Remove cache-manifest.php, see #7262
git-svn-id: https://develop.svn.wordpress.org/trunk@11537 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
4e3ade7628
commit
77a332b2fe
@ -1,42 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Defines the Gears manifest file for Google Gears offline storage.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Administration
|
||||
*/
|
||||
|
||||
/**
|
||||
* Disable error reporting
|
||||
*
|
||||
* Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging
|
||||
*/
|
||||
error_reporting(0);
|
||||
|
||||
/** Set ABSPATH for execution */
|
||||
define( 'ABSPATH', dirname(dirname(__FILE__)) . '/' );
|
||||
|
||||
require(ABSPATH . '/wp-admin/includes/manifest.php');
|
||||
|
||||
$files = get_manifest();
|
||||
|
||||
header( 'Expires: Wed, 11 Jan 1984 05:00:00 GMT' );
|
||||
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
|
||||
header( 'Cache-Control: no-cache, must-revalidate, max-age=0' );
|
||||
header( 'Pragma: no-cache' );
|
||||
header( 'Content-Type: text/cache-manifest; charset=UTF-8' );
|
||||
?>
|
||||
CACHE MANIFEST
|
||||
#
|
||||
# Version: <?php echo $man_version; ?>
|
||||
#
|
||||
<?php
|
||||
foreach ( $files as $file ) {
|
||||
// If version is not set, just output the file
|
||||
if ( !isset($file[1]) )
|
||||
echo $file[0] . "\n";
|
||||
// If ver is set but ignoreQuery is not, output file with ver tacked on
|
||||
else
|
||||
echo $file[0] . '?' . $file[1] . "\n";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user