--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/plugins/wp-super-cache/advanced-cache.php Wed Dec 23 17:55:33 2009 +0000
@@ -0,0 +1,12 @@
+<?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' );
+}
+?>