diff options
author | Andrey Andreev <narf@devilix.net> | 2013-08-06 16:00:30 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-08-06 16:00:30 +0200 |
commit | 5a215b6064c9ce7ee33db9a76bcb1a62bea16ec3 (patch) | |
tree | f1ca126a98fddf103dec6d544536d6d240d32ffc /user_guide_src/source/helpers | |
parent | 5b55c15f24b518aa4775a0c15382c7b4bf72e1bc (diff) | |
parent | 40d124924ea331c6a57ab1b3f743299a41eb3f0c (diff) |
Merge pull request #2586 from vlakoff/develop
Various typos and tabs adjustments
Diffstat (limited to 'user_guide_src/source/helpers')
-rw-r--r-- | user_guide_src/source/helpers/smiley_helper.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/user_guide_src/source/helpers/smiley_helper.rst b/user_guide_src/source/helpers/smiley_helper.rst index 3925f8b1a..cfd52ffbc 100644 --- a/user_guide_src/source/helpers/smiley_helper.rst +++ b/user_guide_src/source/helpers/smiley_helper.rst @@ -17,7 +17,7 @@ This helper is loaded using the following code:: Overview ======== -The Smiley helper has a renderer that takes plain text simileys, like +The Smiley helper has a renderer that takes plain text smileys, like :-) and turns them into a image representation, like |smile!| It also lets you display a set of smiley images that when clicked will @@ -44,7 +44,7 @@ The Controller -------------- In your **application/controllers/** directory, create a file called -smileys.php and place the code below in it. +Smileys.php and place the code below in it. .. important:: Change the URL in the :php:func:`get_clickable_smileys()` function below so that it points to your smiley folder. @@ -156,7 +156,7 @@ string, the second must contain the URL to your smiley folder Example:: - $str = 'Here are some simileys: :-) ;-)'; + $str = 'Here are some smileys: :-) ;-)'; $str = parse_smileys($str, "http://example.com/images/smileys/"); echo $str; |