Remove first page and first comment filters. They're no longer needed. see #11644

git-svn-id: https://develop.svn.wordpress.org/trunk@12854 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2010-01-26 20:42:37 +00:00
parent 5c1138c35b
commit 4fa746310c
3 changed files with 14 additions and 46 deletions
+3
View File
@@ -417,6 +417,8 @@ function wp_load_alloptions() {
if ( !defined( 'WP_INSTALLING' ) || !is_multisite() )
$alloptions = wp_cache_get( 'alloptions', 'options' );
else
$alloptions = false;
if ( !$alloptions ) {
$suppress = $wpdb->suppress_errors();
@@ -429,6 +431,7 @@ function wp_load_alloptions() {
if ( !defined( 'WP_INSTALLING' ) || !is_multisite() )
wp_cache_add( 'alloptions', $alloptions, 'options' );
}
return $alloptions;
}