From: Roland Häder Date: Thu, 26 Jan 2017 09:13:53 +0000 (+0100) Subject: addec curly braces X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9cb100228a431fbc31ff063b57418a8746b3dd83;p=friendica.git addec curly braces Signed-off-by: Roland Häder --- diff --git a/util/po2php.php b/util/po2php.php index 5d3429796e..60736bf4a4 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -12,10 +12,11 @@ function po2php_run(&$argv, &$argc) { $pofile = $argv[1]; $outfile = dirname($pofile)."/strings.php"; - if (strstr($outfile,'util')) + if (strstr($outfile,'util')) { $lang = 'en'; - else + } else { $lang = str_replace('-','_',basename(dirname($pofile))); + }