diff options
author | admin <devnull@localhost> | 2006-09-17 20:10:57 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-17 20:10:57 +0200 |
commit | f6d823ee041caab303a7aba6ecd8c358c6970113 (patch) | |
tree | 3b6887ac4f0812ffba4f1e0a8c88a2767dde9a6f | |
parent | c47289a3196587361ac5fbbd8acd216b1ba0b8dc (diff) |
-rw-r--r-- | system/libraries/Unit_test.php | 4 | ||||
-rw-r--r-- | user_guide/general/changelog.html | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/system/libraries/Unit_test.php b/system/libraries/Unit_test.php index bf50350ae..b2f4bf8cd 100644 --- a/system/libraries/Unit_test.php +++ b/system/libraries/Unit_test.php @@ -223,9 +223,9 @@ class CI_Unit_test { * @params string * @return void */ - function set_template($tempalte) + function set_template($template) { - $this->_template = $tempalte; + $this->_template = $template; } // -------------------------------------------------------------------- diff --git a/user_guide/general/changelog.html b/user_guide/general/changelog.html index eebd91276..b8a399c37 100644 --- a/user_guide/general/changelog.html +++ b/user_guide/general/changelog.html @@ -71,7 +71,7 @@ Change Log <li>Added <a href="hooks.html">Hooks</a> feature, enabling you to tap into and modify the inner workings of the framework without hacking the core files.</li>
<li>Added the ability to organize controller files <a href="controllers.html">into sub-folders</a>. Kudos to Marco for <a href="http://www.codeigniter.com/forums/viewthread/627/">suggesting</a> this (and the next two) feature.</li>
<li>Added regular expressions support for <a href="routing.html">routing rules</a>.</li>
-<li>Added the ability to <a href="controllers.html">remap function calls</a> withing your controllers.</li>
+<li>Added the ability to <a href="controllers.html">remap function calls</a> within your controllers.</li>
<li>Added the ability to <a href="core_classes.html">replace core system classes</a> with your own classes.</li>
<li>Added support for % character in URL.</li>
<li>Added the ability to supply full URLs using the <a href="../helpers/url_helper.html">anchor()</a> helper function.</li>
@@ -111,6 +111,7 @@ Change Log <li>Fixed an incorrectly named variable in the Validation class.</li>
<li>Fixed an incorrectly named variable in the URI class.</li>
<li>Fixed a bug in the config class that was preventing the base URL from being called properly.</li>
+<li>Fixed a bug in the validation class that was not permitting callbacks if the form field was empty.</li>
<li>Fixed some MS SQL bugs.</li>
<li>Fixed some doc typos.</li>
</ul>
|