summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/libraries/Loader.php4
-rw-r--r--user_guide/changelog.html1
2 files changed, 3 insertions, 2 deletions
diff --git a/system/libraries/Loader.php b/system/libraries/Loader.php
index 37cab318b..b30798f6b 100644
--- a/system/libraries/Loader.php
+++ b/system/libraries/Loader.php
@@ -891,8 +891,8 @@ class CI_Loader {
// Is the class name valid?
if ( ! class_exists($name))
{
- log_message('error', "Non-existant class: ".$name);
- show_error("Non-existant class: ".$class);
+ log_message('error', "Non-existent class: ".$name);
+ show_error("Non-existent class: ".$class);
}
// Set the variable name we will assign the class to
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index c6154f082..10c35e75b 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -129,6 +129,7 @@ SVN Revision: XXXX</p>
<li>Fixed Oracle bug (#3306) that was preventing multiple queries in one action.</li>
<li>Fixed ODBC bug that was ignoring connection params due to its use of a constructor.</li>
<li>Fixed a DB driver bug with num_rows() that would cause an error with the Oracle driver.</li>
+ <li>Fixed a spelling error in a Loader error message.</li>
</ul>
<h2>Version 1.6.3</h2>