From baf8065b11950bbabba7af5740b48a116414a67a Mon Sep 17 00:00:00 2001 From: Cameron Date: Sat, 24 Nov 2012 16:37:00 -0800 Subject: [PATCH] Tinymce Fix --- e107_handlers/js_manager.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e107_handlers/js_manager.php b/e107_handlers/js_manager.php index 43f1f2e52..ec2aef09d 100644 --- a/e107_handlers/js_manager.php +++ b/e107_handlers/js_manager.php @@ -1105,7 +1105,8 @@ class e_jsmanager } elseif($external) //true or 'js' { - if(strpos($path, 'http') == 0) continue; // not allowed + + if(strpos($path, 'http') === 0) continue; // not allowed $path = $tp->replaceConstants($path, 'abs').'?external=1&'.$this->getCacheId(); echo ''; echo "\n";