diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-02-24 10:53:08 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-02-24 10:53:08 +0100 |
commit | 5ac6999c87cbca07aa2b0bfa972bac218600b404 (patch) | |
tree | 40fd9d5a78d8caf9f5dae963d543978ac679c0ba /system/helpers/inflector_helper.php | |
parent | 6f6704f3283a7b663f1598bc6013e6658d8d269b (diff) | |
parent | 5148029aaf204fb3e7e4f24a794bee781d0c218b (diff) |
Merge upstream branch
Diffstat (limited to 'system/helpers/inflector_helper.php')
-rw-r--r-- | system/helpers/inflector_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/inflector_helper.php b/system/helpers/inflector_helper.php index 0bd1e112f..2069a1927 100644 --- a/system/helpers/inflector_helper.php +++ b/system/helpers/inflector_helper.php @@ -85,7 +85,7 @@ if ( ! function_exists('singular')) '/([^u])s$/' => '\1', ); - return preg_replace(array_keys($singular_values), $singular_values, $result); + return preg_replace(array_keys($singular_rules), $singular_rules, $result); } } |