Make WordPress Core


Ignore:
Timestamp:
01/26/2010 08:42:37 PM (15 years ago)
Author:
ryan
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r12851 r12854  
    418418    if ( !defined( 'WP_INSTALLING' ) || !is_multisite() )
    419419        $alloptions = wp_cache_get( 'alloptions', 'options' );
     420    else
     421        $alloptions = false;
    420422
    421423    if ( !$alloptions ) {
     
    430432                wp_cache_add( 'alloptions', $alloptions, 'options' );
    431433    }
     434
    432435    return $alloptions;
    433436}
Note: See TracChangeset for help on using the changeset viewer.