summaryrefslogtreecommitdiffstats
path: root/system/libraries
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2009-08-17 19:40:48 +0200
committerDerek Allard <derek.allard@ellislab.com>2009-08-17 19:40:48 +0200
commitea9e4e0c22368f80597c073e99446ffa386e7531 (patch)
tree45997dbbff94e9e77aa20365a8e49bff5ccd8615 /system/libraries
parentdefaa17f0977c340440d81fbfb619db2c13c5ce5 (diff)
Fixed a bug in the language class when outputting an error for an unfound file.
Diffstat (limited to 'system/libraries')
-rw-r--r--system/libraries/Language.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Language.php b/system/libraries/Language.php
index cf6d53239..b679c891f 100644
--- a/system/libraries/Language.php
+++ b/system/libraries/Language.php
@@ -78,7 +78,7 @@ class CI_Language {
}
else
{
- show_error('Unable to load the requested language file: language/'.$langfile);
+ show_error('Unable to load the requested language file: language/'.$idiom.'/'.$langfile);
}
}