From e82379cee20385d41c68587fb569efd891da83b2 Mon Sep 17 00:00:00 2001 From: westi Date: Sun, 22 Feb 2009 10:09:30 +0000 Subject: [PATCH] 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 --- wp-includes/functions.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 3aed0597f..00cad7ec0 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -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; } /**