CodeIgniter Forums
User Guide Typo - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: User Guide Typo (/showthread.php?tid=19245)



User Guide Typo - El Forum - 06-01-2009

[eluser]Unknown[/eluser]
just noticed in the user guide, url_title example shows the string being lowercased by default


User Guide Typo - El Forum - 06-02-2009

[eluser]jdfwarrior[/eluser]
You are correct. Good catch. Only wrong on the first example though:

Code:
$title = "What's wrong with CSS?";
$url_title = url_title($title);
// Produces: whats-wrong-with-css

Should be:
Code:
$title = "What's wrong with CSS?";
$url_title = url_title($title);
// Produces: Whats-wrong-with-CSS



User Guide Typo - El Forum - 06-02-2009

[eluser]Derek Allard[/eluser]
It is a nice catch, thanks. It had already been fixed in the svn for what its worth, I think someone reported it in the bug tracker.

Welcome to CI tommy!


User Guide Typo - El Forum - 06-02-2009

[eluser]Unknown[/eluser]
Thanks :-)