Changeset 5857
- Timestamp:
- 08/08/2007 05:41:46 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/plugin.php
r5413 r5857 58 58 } 59 59 60 } while ( next($wp_filter[$tag]) );60 } while ( next($wp_filter[$tag]) !== false ); 61 61 62 62 return $string; … … 162 162 call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args'])); 163 163 164 } while ( next($wp_filter[$tag]) );164 } while ( next($wp_filter[$tag]) !== false ); 165 165 166 166 }
Note: See TracChangeset
for help on using the changeset viewer.