mirror of
https://github.com/kennethreitz-archive/wordpress-skeleton.git
synced 2026-06-05 23:50:19 +00:00
13 lines
456 B
PHP
13 lines
456 B
PHP
<?php
|
|
# WP SUPER CACHE 0.8.9.1
|
|
function wpcache_broken_message() {
|
|
if ( false == strpos( $_SERVER[ 'REQUEST_URI' ], 'wp-admin' ) )
|
|
echo "<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->";
|
|
}
|
|
|
|
if ( !include_once( 'CACHEHOME' . 'wp-cache-phase1.php' ) ) {
|
|
if ( !@is_file( 'CACHEHOME' . 'wp-cache-phase1.php' ) )
|
|
register_shutdown_function( 'wpcache_broken_message' );
|
|
}
|
|
?>
|