Skip to content

Commit

Permalink
This should have been part of b392b7c
Browse files Browse the repository at this point in the history
  • Loading branch information
Woody Gilk committed Nov 17, 2009
1 parent 6b8ae47 commit d78bf96
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions classes/kohana/i18n.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,10 @@ public static function load($lang)
if ($files = Kohana::find_file('i18n', $path))
{
$t = array();

foreach ($files as $file)
{
// Merge the language strings into the sub table
$t = array_merge($table, Kohana::load($file));
$t = array_merge($t, Kohana::load($file));
}

// Append the sub table, preventing less specific language
Expand Down

0 comments on commit d78bf96

Please sign in to comment.