From e8b26199a3d13eeae0f413195745e2298878f096 Mon Sep 17 00:00:00 2001
From: Derek Allard
Date: Mon, 7 Dec 2009 16:32:18 +0000
Subject: Fixed a language key in the profiler: "profiler_no_memory_usage" to
"profiler_no_memory".
---
system/libraries/Profiler.php | 2 +-
user_guide/changelog.html | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php
index 9eb7dfa70..5676898c8 100644
--- a/system/libraries/Profiler.php
+++ b/system/libraries/Profiler.php
@@ -351,7 +351,7 @@ class CI_Profiler {
}
else
{
- $output .= "".$this->CI->lang->line('profiler_no_memory_usage')."
";
+ $output .= "".$this->CI->lang->line('profiler_no_memory')."
";
}
$output .= "";
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index 4411aebfa..9f6c18220 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -66,6 +66,7 @@ SVN Revision:
- Documented a second argument in the decode() function for the Encryption Class.
- Fixed an error in the Zip library that didn't allow downloading on PHP 4 servers.
+ - Fixed a language key in the profiler: "profiler_no_memory_usage" to "profiler_no_memory".
Helpers
--
cgit v1.2.3-24-g4f1b