Make WordPress Core

Changeset 5491


Ignore:
Timestamp:
05/19/2007 04:32:28 AM (18 years ago)
Author:
rob1n
Message:

Don't fail when the user don't set WP-Cache up correctly. Props Denis de Bernardy. fixes #4293

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/wp-settings.php

    r5360 r5491  
    8282// For an advanced caching plugin to use, static because you would only want one
    8383if ( defined('WP_CACHE') )
    84     require (ABSPATH . 'wp-content/advanced-cache.php');
     84    @include ABSPATH . 'wp-content/advanced-cache.php';
    8585
    8686define('WPINC', 'wp-includes');
  • trunk/wp-settings.php

    r5360 r5491  
    8282// For an advanced caching plugin to use, static because you would only want one
    8383if ( defined('WP_CACHE') )
    84     require (ABSPATH . 'wp-content/advanced-cache.php');
     84    @include ABSPATH . 'wp-content/advanced-cache.php';
    8585
    8686define('WPINC', 'wp-includes');
Note: See TracChangeset for help on using the changeset viewer.