diff options
author | kostikov <max@kostikov.co> | 2018-07-20 00:22:04 +0200 |
---|---|---|
committer | kostikov <max@kostikov.co> | 2018-07-20 00:22:04 +0200 |
commit | f9b18aa62f30527880377d2c1dd391af4be04a6c (patch) | |
tree | 4454fd5529ccec01bda5dd0fe840f2db401247eb /util/php2po.php | |
parent | eb322e831297ee8fd773049c1a00c915c49dc93e (diff) | |
download | volse-hubzilla-f9b18aa62f30527880377d2c1dd391af4be04a6c.tar.gz volse-hubzilla-f9b18aa62f30527880377d2c1dd391af4be04a6c.tar.bz2 volse-hubzilla-f9b18aa62f30527880377d2c1dd391af4be04a6c.zip |
Update php2po.php
Diffstat (limited to 'util/php2po.php')
-rw-r--r-- | util/php2po.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/util/php2po.php b/util/php2po.php index ff41e6d1e..352ed41f6 100644 --- a/util/php2po.php +++ b/util/php2po.php @@ -1,11 +1,11 @@ <?php - if(! class_exists('App')) { - class TmpA { - public $strings = Array(); - } - $a = new TmpA(); - } + if(! class_exists('App')) { + class App { + static public $strings = Array(); + } + //$a = new App(); + } if ($argc!=2) { print "Usage: ".$argv[0]." <hstrings.php>\n\n"; |