]> git.mxchange.org Git - friendica.git/commitdiff
Fix PoToPhp
authorAlexandre Alapetite <alexandre@alapetite.fr>
Thu, 17 May 2018 06:12:55 +0000 (08:12 +0200)
committerAlexandre Alapetite <alexandre@alapetite.fr>
Thu, 17 May 2018 06:12:55 +0000 (08:12 +0200)
https://github.com/friendica/friendica/pull/5072#issuecomment-389754406

src/Core/Console/PoToPhp.php

index 62ff24bd5553a20ee4a8525182faa689c1b64f95..e97e1ff3d9cfedd31751f4e1b29ba8e522e0a535 100644 (file)
@@ -94,6 +94,7 @@ HELP;
                                $fnname = 'string_plural_select_' . $lang;
                                $out .= 'if(! function_exists("' . $fnname . '")) {' . "\n";
                                $out .= 'function ' . $fnname . '($n){' . "\n";
+                               $out .= '       $n = intval($n);' . "\n";
                                $out .= '       return ' . $cond . ';' . "\n";
                                $out .= '}}' . "\n";
                        }