summaryrefslogtreecommitdiffstats
path: root/system/helpers/smiley_helper.php
diff options
context:
space:
mode:
authorGreg Aker <greg.aker@ellislab.com>2010-04-20 19:45:14 +0200
committerGreg Aker <greg.aker@ellislab.com>2010-04-20 19:45:14 +0200
commit60e78c75f9cb332dcd5a387bf4262c1566f32b8e (patch)
treea0c35a0d9e48e7e97394b46bc901136154321544 /system/helpers/smiley_helper.php
parentff3ecaede7e7154d1897307a390919b655b15096 (diff)
Modifying smiley_js() in the smiley helper to add optional third parameter to return only the javascript with no script tags.
Diffstat (limited to 'system/helpers/smiley_helper.php')
-rw-r--r--system/helpers/smiley_helper.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/system/helpers/smiley_helper.php b/system/helpers/smiley_helper.php
index 775cc1b99..b9eb0a23e 100644
--- a/system/helpers/smiley_helper.php
+++ b/system/helpers/smiley_helper.php
@@ -40,7 +40,7 @@
*/
if ( ! function_exists('smiley_js'))
{
- function smiley_js($alias = '', $field_id = '')
+ function smiley_js($alias = '', $field_id = '', $inline = TRUE)
{
static $do_setup = TRUE;
@@ -108,7 +108,14 @@ EOF;
}
}
- return '<script type="text/javascript" charset="utf-8">/*<![CDATA[ */'.$r.'// ]]></script>';
+ if ($inline)
+ {
+ return '<script type="text/javascript" charset="utf-8">/*<![CDATA[ */'.$r.'// ]]></script>';
+ }
+ else
+ {
+ return $r;
+ }
}
}