diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-07-20 10:42:45 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-07-20 10:42:45 +0200 |
commit | 4a54699c1fd27a885c7b4f0ee8458fa8bda8075d (patch) | |
tree | fb7537ba526efd2d4d5717212223952a3989a223 /util/php2po.php | |
parent | c72f6e6ea8d363c43de27760a2374230ce521606 (diff) | |
parent | a274c87cb3de95700d8eb17f7a391db9d3470057 (diff) | |
download | volse-hubzilla-4a54699c1fd27a885c7b4f0ee8458fa8bda8075d.tar.gz volse-hubzilla-4a54699c1fd27a885c7b4f0ee8458fa8bda8075d.tar.bz2 volse-hubzilla-4a54699c1fd27a885c7b4f0ee8458fa8bda8075d.zip |
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
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"; |