Skip to content

Commit

Permalink
Changed case because locale is case sensitive on some servers.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianherbert committed Aug 28, 2010
1 parent 23ec940 commit 6682702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/core/Kohana.php
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,7 @@ public static function lang($key, $args = array(), $force_locale = NULL)
return $key;
}else{
// Try for English
return Kohana::lang($key, $args, 'EN_US');
return Kohana::lang($key, $args, 'en_US');
}
}

Expand Down

0 comments on commit 6682702

Please sign in to comment.