Wrap the apply_filters call in a function_exists check as this can be called before it is defined. See #9205.

git-svn-id: http://svn.automattic.com/wordpress/trunk@10626 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2009-02-22 10:09:30 +00:00
parent c7f59f6cfe
commit e82379cee2
1 changed files with 5 additions and 1 deletions

View File

@ -1477,7 +1477,11 @@ function wp_get_nocache_headers() {
'Cache-Control' => 'no-cache, must-revalidate, max-age=0',
'Pragma' => 'no-cache',
);
return apply_filters('nocache_headers', $headers);
if ( function_exists('apply_filters') ) {
$headers = apply_filters('nocache_headers', $headers);
}
return $headers;
}
/**