Changeset 2913
- Timestamp:
- 06/25/2008 03:44:12 PM (5 months ago)
- Files:
-
- 1 modified
-
trunk/system/helpers/inflector.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/helpers/inflector.php
r2912 r2913 62 62 63 63 // Cache key name 64 $key = $str.$count;64 $key = 'singular_'.$str.$count; 65 65 66 66 if (isset(self::$cache[$key])) … … 118 118 119 119 // Cache key name 120 $key = $str.$count;120 $key = 'plural_'.$str.$count; 121 121 122 122 if (isset(self::$cache[$key]))
