From a67ddc61937d178231607f66f2af3ef729f208d4 Mon Sep 17 00:00:00 2001 From: tubalmartin Date: Sun, 4 Mar 2012 16:18:04 +0100 Subject: User guide updated --- user_guide/helpers/url_helper.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user_guide/helpers/url_helper.html b/user_guide/helpers/url_helper.html index 76ec32ab2..c23c5ac92 100644 --- a/user_guide/helpers/url_helper.html +++ b/user_guide/helpers/url_helper.html @@ -231,11 +231,11 @@ $url_title = url_title($title);
-

The second parameter determines the word delimiter. By default dashes are used. Options are: dash, or underscore:

+

The second parameter determines the word delimiter. By default dashes are used.

$title = "What's wrong with CSS?";

-$url_title = url_title($title, 'underscore');
+$url_title = url_title($title, '_');

// Produces: Whats_wrong_with_CSS
@@ -244,7 +244,7 @@ $url_title = url_title($title, 'underscore');
$title = "What's wrong with CSS?";

-$url_title = url_title($title, 'underscore', TRUE);
+$url_title = url_title($title, '_', TRUE);

// Produces: whats_wrong_with_css
-- cgit v1.2.3-24-g4f1b