diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-07-06 14:41:37 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-07-06 14:41:37 +0000 |
commit | 3fe2b1a3263324b0ca8874ca72e57bfe07770d87 (patch) | |
tree | 322801c0b9ebc5e7d1a7afe48f305f01e24c88e5 | |
parent | c79ab3ca3601856e54e26df75c9eb8977f181d1c (diff) | |
download | brdo-3fe2b1a3263324b0ca8874ca72e57bfe07770d87.tar.gz brdo-3fe2b1a3263324b0ca8874ca72e57bfe07770d87.tar.bz2 |
- Patch #72138 by erdemkose: fixed import of some plural formulas.
-rw-r--r-- | includes/locale.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/locale.inc b/includes/locale.inc index 48b9df2fb..b8e289f4d 100644 --- a/includes/locale.inc +++ b/includes/locale.inc @@ -796,7 +796,7 @@ function _locale_import_parse_plural_forms($pluralforms, $filename) { // Get PHP version of the plural formula $plural = _locale_import_parse_arithmetic($plural); - if ($plural) { + if ($plural !== FALSE) { return array($nplurals, $plural); } else { |