From ff845f94cc8876bc6c23c2f55b695bc569038512 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Thu, 26 Jun 2008 17:05:55 +0000 Subject: changed your-site.com to example.com doc-wide --- user_guide/helpers/smiley_helper.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'user_guide/helpers/smiley_helper.html') diff --git a/user_guide/helpers/smiley_helper.html b/user_guide/helpers/smiley_helper.html index 7b59ec20b..a82ebd2b9 100644 --- a/user_guide/helpers/smiley_helper.html +++ b/user_guide/helpers/smiley_helper.html @@ -111,7 +111,7 @@ class Smileys extends Controller { $this->load->helper('smiley'); $this->load->library('table'); - $image_array = get_clickable_smileys('http://www.your-site.com/images/smileys/'); + $image_array = get_clickable_smileys('http://example.com/images/smileys/'); $col_array = $this->table->make_columns($image_array, 8); @@ -160,7 +160,7 @@ class Smileys extends Controller {

Returns an array containing your smiley images wrapped in a clickable link. You must supply the URL to your smiley folder via the first parameter:

-$image_array = get_clickable_smileys("http://www.your-site.com/images/smileys/"); +$image_array = get_clickable_smileys("http://example.com/images/smileys/");

js_insert_smiley()

@@ -181,7 +181,7 @@ equivalent. The first parameter must contain your string, the second must conta $str = 'Here are some simileys: :-) ;-)'; -$str = parse_smileys($str, "http://www.your-site.com/images/smileys/"); +$str = parse_smileys($str, "http://example.com/images/smileys/"); echo $str; -- cgit v1.2.3-24-g4f1b