git-svn-id: https://develop.svn.wordpress.org/trunk@2418 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-03-07 15:20:56 +00:00
parent 8089bd2956
commit d22dd5f1bd
1 changed files with 2 additions and 4 deletions

View File

@ -872,12 +872,10 @@ function merge_filters($tag) {
$wp_filter[$tag][$priority] = array_merge($wp_filter['all'][$priority], array());
$wp_filter[$tag][$priority] = array_unique($wp_filter[$tag][$priority]);
}
}
}
if (isset($wp_filter[$tag]))
ksort($wp_filter[$tag]);
if ( isset($wp_filter[$tag]) )
ksort( $wp_filter[$tag] );
}
function apply_filters($tag, $string) {