From 325197e700564f8e4e0ba7c9fc82abfd85f451b0 Mon Sep 17 00:00:00 2001 From: Rick Ellis Date: Mon, 20 Nov 2006 17:29:05 +0000 Subject: --- user_guide/helpers/date_helper.html | 2 +- user_guide/helpers/smiley_helper.html | 2 +- user_guide/helpers/text_helper.html | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'user_guide/helpers') diff --git a/user_guide/helpers/date_helper.html b/user_guide/helpers/date_helper.html index 68e306827..0cf78848e 100644 --- a/user_guide/helpers/date_helper.html +++ b/user_guide/helpers/date_helper.html @@ -315,7 +315,7 @@ echo timespan($post_date, $now); UM1(UTC - 1:00) Azores, Cape Verde Islands -(UTC(UTC) Casablanca, Dublin, Edinburgh, London, Lisbon, Monrovia +UTC(UTC) Casablanca, Dublin, Edinburgh, London, Lisbon, Monrovia UP1(UTC + 1:00) Berlin, Brussels, Copenhagen, Madrid, Paris, Rome diff --git a/user_guide/helpers/smiley_helper.html b/user_guide/helpers/smiley_helper.html index d818d008c..36ea26216 100644 --- a/user_guide/helpers/smiley_helper.html +++ b/user_guide/helpers/smiley_helper.html @@ -84,7 +84,7 @@ Your users can click a desired smiley and with the help of some JavaScript it wi

Clickable Smileys Tutorial

-

Here is an example demonstrating how you might create a set of clickale smileys next to a form field. This example +

Here is an example demonstrating how you might create a set of clickable smileys next to a form field. This example requires that you first download and install the smiley images, then create a controller and the View as described.

Important: Before you begin, please download the smiley images and put them in diff --git a/user_guide/helpers/text_helper.html b/user_guide/helpers/text_helper.html index f84acce95..9cdada2db 100644 --- a/user_guide/helpers/text_helper.html +++ b/user_guide/helpers/text_helper.html @@ -79,7 +79,7 @@ Text Helper

Truncates a string to the number of words specified. Example:

-$str = "Here is a nice text string consisting of eleven words.";
+$string = "Here is a nice text string consisting of eleven words.";

$string = word_limiter($string, 4);

@@ -95,9 +95,9 @@ $string = word_limiter($string, 4);

of words so the character count may be slightly more or less then what you specify. Example:

-$str = "Here is a nice text string consisting of eleven words.";
+$string = "Here is a nice text string consisting of eleven words.";

-$string = char_limiter($string, 20);

+$string = character_limiter($string, 20);

// Returns: Here is a nice text string…
@@ -149,7 +149,7 @@ contain the phrase you wish to highlight. The third and fourth parameters will you would like the phrase wrapped in. Example:

-$str = "Here is a nice text string about nothing in particular.";
+$string = "Here is a nice text string about nothing in particular.";

$string = highlight_phrase($string, "nice text", '<span style="color:#990000">', '</span>');
-- cgit v1.2.3-24-g4f1b