diff options
author | kostikov <max@kostikov.co> | 2018-07-20 00:22:04 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-07-21 11:38:35 +0200 |
commit | b7778ca1f959ebea9405fc1faf084b56ad78c7e4 (patch) | |
tree | 837478f5906c56677a9a1a5b688344d42b3bdab8 /util | |
parent | ddd77ee6eed99852b6456bac7b84f737604e8483 (diff) | |
download | volse-hubzilla-b7778ca1f959ebea9405fc1faf084b56ad78c7e4.tar.gz volse-hubzilla-b7778ca1f959ebea9405fc1faf084b56ad78c7e4.tar.bz2 volse-hubzilla-b7778ca1f959ebea9405fc1faf084b56ad78c7e4.zip |
Update php2po.php
(cherry picked from commit f9b18aa62f30527880377d2c1dd391af4be04a6c)
Diffstat (limited to 'util')
-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"; |