commit | ea9e4e0c22368f80597c073e99446ffa386e7531 | [log] [tgz] |
---|---|---|
author | Derek Allard <derek.allard@ellislab.com> | Mon Aug 17 17:40:48 2009 +0000 |
committer | Derek Allard <derek.allard@ellislab.com> | Mon Aug 17 17:40:48 2009 +0000 |
tree | 45997dbbff94e9e77aa20365a8e49bff5ccd8615 | |
parent | defaa17f0977c340440d81fbfb619db2c13c5ce5 [diff] [blame] |
Fixed a bug in the language class when outputting an error for an unfound file.
diff --git a/system/libraries/Language.php b/system/libraries/Language.php index cf6d532..b679c89 100644 --- a/system/libraries/Language.php +++ b/system/libraries/Language.php
@@ -78,7 +78,7 @@ } else { - show_error('Unable to load the requested language file: language/'.$langfile); + show_error('Unable to load the requested language file: language/'.$idiom.'/'.$langfile); } }