diff options
author | Friendika <info@friendika.com> | 2011-05-10 20:10:13 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-05-10 20:10:13 -0700 |
commit | 5eea0d5ecb7d98ebc70c038d23c87442d8200310 (patch) | |
tree | 78f6bffb14e2a088b61778380a750da01aac2c7b /util/po2php.php | |
parent | 2fffec912c19716546bef0ec8a52bc5cb102801c (diff) | |
download | volse-hubzilla-5eea0d5ecb7d98ebc70c038d23c87442d8200310.tar.gz volse-hubzilla-5eea0d5ecb7d98ebc70c038d23c87442d8200310.tar.bz2 volse-hubzilla-5eea0d5ecb7d98ebc70c038d23c87442d8200310.zip |
photo lockview not working, temp fix for po2php
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 1aa8adc1f..34e99d1ab 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -35,7 +35,7 @@ function po2php_run($argv, $argc) { if ($l[0]=="#") $l=""; if (substr($l,0,15)=='"Plural-Forms: '){ $match=Array(); - preg_match("|nplurals=([0-9]*); *plural=(.*)|", $l, $match); + preg_match("|nplurals=([0-9]*); *plural=(.*);|", $l, $match); $cond = str_replace('n','$n',$match[2]); $out .= 'function string_plural_select($n){'."\n"; $out .= ' return '.$cond.';'."\n"; |