Changeset 5187 for trunk/wp-includes/compat.php
- Timestamp:
- 04/06/2007 02:54:12 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/compat.php
r4495 r5187 119 119 } 120 120 121 // Added in PHP 5.0 122 if (!function_exists('stripos')) { 123 function stripos($haystack, $needle, $offset = 0) { 124 return strpos(strtolower($haystack), strtolower($needle), $offset); 125 } 126 } 127 121 128 ?>
Note: See TracChangeset
for help on using the changeset viewer.