diff options
author | friendica <info@friendica.com> | 2014-05-13 02:17:17 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-05-13 02:17:17 -0700 |
commit | 71ded9388b71617b4eeff95d168242dac79324ac (patch) | |
tree | 0bfe0396dcb2ff99dfaa6ad41ce87eb0575567bb /util/po2php.php | |
parent | 8c948f4bbe04e4221e6a845995048a565d6ce808 (diff) | |
download | volse-hubzilla-71ded9388b71617b4eeff95d168242dac79324ac.tar.gz volse-hubzilla-71ded9388b71617b4eeff95d168242dac79324ac.tar.bz2 volse-hubzilla-71ded9388b71617b4eeff95d168242dac79324ac.zip |
missing paren
Diffstat (limited to 'util/po2php.php')
-rw-r--r-- | util/po2php.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/po2php.php b/util/po2php.php index 3ac8b89dd..edb1a35a8 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -44,7 +44,7 @@ function po2php_run($argv, $argc) { $match=Array(); preg_match("|nplurals=([0-9]*); *plural=(.*)[;\\\\]|", $l, $match); $cond = str_replace('n','$n',$match[2]); - $out .= 'if(! function_exists("' . 'string_plural_select_' . $lang .'") {' . "\n"; + $out .= 'if(! function_exists("' . 'string_plural_select_' . $lang .'")) {' . "\n"; $out .= 'function string_plural_select_' . $lang . '($n){'."\n"; $out .= ' return '.$cond.';'."\n"; $out .= '}}'."\n"; |