diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:32:59 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:32:59 -0400 |
commit | 6dc1997577fab2c366781fd7048144935afa0012 (patch) | |
tree | 8918d28c7ab4342f0738985e37af1dfc42d0e93a /languages/classes/LanguageEt.php | |
parent | 150f94f051128f367bc89f6b7e5f57eb2a69fc62 (diff) | |
parent | fa89acd685cb09cdbe1c64cbb721ec64975bbbc1 (diff) |
Merge commit 'fa89acd'
# Conflicts:
# .gitignore
# extensions/ArchInterWiki.sql
Diffstat (limited to 'languages/classes/LanguageEt.php')
-rw-r--r-- | languages/classes/LanguageEt.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/languages/classes/LanguageEt.php b/languages/classes/LanguageEt.php index 6425a533..759531b5 100644 --- a/languages/classes/LanguageEt.php +++ b/languages/classes/LanguageEt.php @@ -1,6 +1,6 @@ <?php /** - * Estonian (Eesti) specific code. + * Estonian (eesti) specific code. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -22,20 +22,18 @@ */ /** - * Estonian (Eesti) + * Estonian (eesti) * * @ingroup Language */ class LanguageEt extends Language { /** - * Avoid grouping whole numbers between 0 to 9999 - * + * Avoid grouping whole numbers between -9999 to 9999 * @param string $_ - * * @return string */ function commafy( $_ ) { - if ( !preg_match( '/^\d{1,4}$/', $_ ) ) { + if ( !preg_match( '/^\-?\d{1,4}(\.\d+)?$/', $_ ) ) { return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev( $_ ) ) ); } else { return $_; |