From: Mikael Nordfeldth Date: Thu, 28 Jan 2016 13:40:47 +0000 (+0100) Subject: php-gettext extlib updated as req !88 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=10f16e4f322420ce53a947cc25be8a44114da77e;p=quix0rs-gnu-social.git php-gettext extlib updated as req !88 Thanks postblue --- diff --git a/extlib/php-gettext/gettext.php b/extlib/php-gettext/gettext.php index 5064047cbd..171d14e23d 100644 --- a/extlib/php-gettext/gettext.php +++ b/extlib/php-gettext/gettext.php @@ -350,6 +350,10 @@ class gettext_reader { * @return int array index of the right plural form */ function select_string($n) { + if (!is_int($n)) { + throw new InvalidArgumentException( + "Select_string only accepts integers: " . $n); + } $string = $this->get_plural_forms(); $string = str_replace('nplurals',"\$total",$string); $string = str_replace("n",$n,$string);