Changeset 19374 for trunk/wp-includes/plugin.php
- Timestamp:
- 11/21/2011 03:35:57 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/plugin.php
r18639 r19374 284 284 if( isset($wp_filter[$tag]) ) { 285 285 if( false !== $priority && isset($wp_filter[$tag][$priority]) ) 286 unset($wp_filter[$tag][$priority]);286 $wp_filter[$tag][$priority] = array(); 287 287 else 288 unset($wp_filter[$tag]);288 $wp_filter[$tag] = array(); 289 289 } 290 290
Note: See TracChangeset
for help on using the changeset viewer.