diff options
author | admin <devnull@localhost> | 2006-09-03 20:24:39 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-03 20:24:39 +0200 |
commit | 1cf89aab5fff8c8068cbf0ed18038b6e4fd4f605 (patch) | |
tree | 18ee7e5d935161e64460f55a1ce8ddceb2cbe046 /system/libraries/Trackback.php | |
parent | 6ac4bea2da9e64fb0b434f52177353f6bd65b8e6 (diff) |
Diffstat (limited to 'system/libraries/Trackback.php')
-rw-r--r-- | system/libraries/Trackback.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Trackback.php b/system/libraries/Trackback.php index 583c6d28d..8f9680d44 100644 --- a/system/libraries/Trackback.php +++ b/system/libraries/Trackback.php @@ -368,7 +368,7 @@ class CI_Trackback { $tb_array = explode('/', $url); $tb_end = $tb_array[count($tb_array)-1]; - if ( ! ctype_digit($tb_end)) + if ( ! is_numeric($tb_end)) { $tb_end = $tb_array[count($tb_array)-2]; } @@ -386,7 +386,7 @@ class CI_Trackback { $tb_array = explode('/', $url); $tb_id = $tb_array[count($tb_array)-1]; - if ( ! ctype_digit($tb_id)) + if ( ! is_numeric($tb_id)) { $tb_id = $tb_array[count($tb_array)-2]; } |