summaryrefslogtreecommitdiffstats
path: root/system/libraries/Unit_test.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-11-22 16:26:29 +0100
committerAndrey Andreev <narf@bofh.bg>2012-11-22 16:26:29 +0100
commitce0c9561e9068d5dab9c473f1ca0709b0d222cf1 (patch)
treee4cb5f26a6ee9eb3e52c3314c33c98e2e526b9d8 /system/libraries/Unit_test.php
parent53fff911de3564c8688550452f138991730a704f (diff)
Fix issue #118 (manually implementing PR #1832)
Diffstat (limited to 'system/libraries/Unit_test.php')
-rw-r--r--system/libraries/Unit_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Unit_test.php b/system/libraries/Unit_test.php
index 842b4aebd..05c7eef78 100644
--- a/system/libraries/Unit_test.php
+++ b/system/libraries/Unit_test.php
@@ -284,11 +284,11 @@ class CI_Unit_test {
continue;
}
- if (FALSE !== ($line = $CI->lang->line(strtolower('ut_'.$val))))
+ if (FALSE !== ($line = $CI->lang->line(strtolower('ut_'.$val), FALSE)))
{
$val = $line;
}
- $temp[$CI->lang->line('ut_'.$key)] = $val;
+ $temp[$CI->lang->line('ut_'.$key, FALSE)] = $val;
}
$retval[] = $temp;