diff options
author | Mario <mario@mariovavti.com> | 2018-07-20 09:21:35 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-07-20 09:21:35 +0200 |
commit | a274c87cb3de95700d8eb17f7a391db9d3470057 (patch) | |
tree | 7cf2e7ac5e4cf33a9311923f675e1c8b102074a1 /util | |
parent | a94c9d270906136f69156c0e7c0bd2c8a2e63d1a (diff) | |
parent | f9b18aa62f30527880377d2c1dd391af4be04a6c (diff) | |
download | volse-hubzilla-a274c87cb3de95700d8eb17f7a391db9d3470057.tar.gz volse-hubzilla-a274c87cb3de95700d8eb17f7a391db9d3470057.tar.bz2 volse-hubzilla-a274c87cb3de95700d8eb17f7a391db9d3470057.zip |
Merge branch 'dev' into 'dev'
Update php2po.php
See merge request hubzilla/core!1229
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"; |