diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-06-14 14:10:56 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-06-14 14:10:56 +0200 |
commit | 3dad2e714189b992248261c78d780b322b3c73da (patch) | |
tree | 59d13c94d06ea3183c33f384100f61e73f540c87 /system/libraries/Javascript.php | |
parent | 19c83f6ec6dd29b2ecbeba87801d275f4e247678 (diff) |
Replace strncmp() usage with strpos()
Diffstat (limited to 'system/libraries/Javascript.php')
-rw-r--r-- | system/libraries/Javascript.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Javascript.php b/system/libraries/Javascript.php index 98fec61d3..5c8b09217 100644 --- a/system/libraries/Javascript.php +++ b/system/libraries/Javascript.php @@ -620,7 +620,7 @@ class CI_Javascript { $this->_javascript_location = $this->CI->config->item('javascript_location'); } - if ($relative === TRUE OR strncmp($external_file, 'http://', 7) === 0 OR strncmp($external_file, 'https://', 8) === 0) + if ($relative === TRUE OR strpos($external_file, 'http://') === 0 OR strpos($external_file, 'https://') === 0) { $str = $this->_open_script($external_file); } |