Changeset 2175 for trunk/system/core/Kohana.php
- Timestamp:
- 02/27/2008 07:22:48 AM (11 months ago)
- Files:
-
- 1 modified
-
trunk/system/core/Kohana.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/core/Kohana.php
r2171 r2175 508 508 { 509 509 $description = Kohana::lang('errors.'.E_RECOVERABLE_ERROR); 510 $description = $description[2];510 $description = is_array($description) ? $description[2] : ''; 511 511 } 512 512 else … … 794 794 // Loop through the files and include each one, so SYSPATH files 795 795 // can be overloaded by more localized files 796 foreach(self::find_file('i18n', $filename) as $file name)797 { 798 include $file name;796 foreach(self::find_file('i18n', $filename) as $file) 797 { 798 include $file; 799 799 800 800 // Merge in configuration
