diff options
author | Robin Sowell <robin.sowell@ellislab.com> | 2010-03-19 16:15:28 +0100 |
---|---|---|
committer | Robin Sowell <robin.sowell@ellislab.com> | 2010-03-19 16:15:28 +0100 |
commit | 76b369e191f4432ceba51ba7d7993c4ea54579ae (patch) | |
tree | 665ac4a9af07b2ea7ee3c242c549e408d0532059 /system/libraries/Trackback.php | |
parent | 66a3fc0a7dc6ae84da4a1e852e4458fda7714567 (diff) |
Changed a few strstr to strpos for consistency w performance guidelines and to mirror EE2.
Diffstat (limited to 'system/libraries/Trackback.php')
-rw-r--r-- | system/libraries/Trackback.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Trackback.php b/system/libraries/Trackback.php index a604c0b2d..a27914487 100644 --- a/system/libraries/Trackback.php +++ b/system/libraries/Trackback.php @@ -356,7 +356,7 @@ class CI_Trackback { { $tb_id = ""; - if (strstr($url, '?')) + if (strpos($url, '?') !== FALSE) { $tb_array = explode('/', $url); $tb_end = $tb_array[count($tb_array)-1]; |