summaryrefslogtreecommitdiffstats
path: root/user_guide
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-09-22 20:45:42 +0200
committeradmin <devnull@localhost>2006-09-22 20:45:42 +0200
commit592cdcbc58963f0cf811aea59db9907943460770 (patch)
treeb04e784e804d409c237697901cb1f46e4c6ae948 /user_guide
parent6de4e5f149b9d467a3238250dfe4f45bb9512e87 (diff)
Diffstat (limited to 'user_guide')
-rw-r--r--user_guide/general/changelog.html1
-rw-r--r--user_guide/helpers/inflector_helper.html2
2 files changed, 2 insertions, 1 deletions
diff --git a/user_guide/general/changelog.html b/user_guide/general/changelog.html
index c769914fc..7aa778962 100644
--- a/user_guide/general/changelog.html
+++ b/user_guide/general/changelog.html
@@ -78,6 +78,7 @@ Change Log
<li>Added <dfn>delete_cookie()</dfn> and <dfn>get_cookie()</dfn> to <a href="../helpers/cookie_helper.html">Cookie helper</a>, even though the input class has a cookie fetching function.</li>
<li>Added Oracle database driver (still undergoing testing so it might have some bugs).</li>
<li>Added the ability to combine pseudo-variables and php variables in the template parser class.</li>
+<li>Added output compression option to the config file.</li>
<li>Removed the is_numeric test from the db->escape() function.</li>
<li>Fixed a MySQLi bug that was causing error messages not to contain proper error data.</li>
<li>Fixed a bug in the email class which was causing it to ignore explicitly set alternative headers.</li>
diff --git a/user_guide/helpers/inflector_helper.html b/user_guide/helpers/inflector_helper.html
index 379f56a9b..fc7e406f8 100644
--- a/user_guide/helpers/inflector_helper.html
+++ b/user_guide/helpers/inflector_helper.html
@@ -120,7 +120,7 @@ echo underscore($word); // Returns "my_dog_spot"
<code>
$word = "my_dog_spot";<br />
-echo humanize($word); // Returns "my dog spot"
+echo humanize($word); // Returns "My Dog Spot"
</code>