From e6dc2f520b4fd33777756cdd969fcc65c3471422 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sat, 15 Nov 2008 18:41:27 +0000 Subject: [PATCH] Notice fix git-svn-id: https://develop.svn.wordpress.org/trunk@9719 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/update.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wp-admin/includes/update.php b/wp-admin/includes/update.php index 2e63afca7a..ef4128da8b 100644 --- a/wp-admin/includes/update.php +++ b/wp-admin/includes/update.php @@ -92,6 +92,9 @@ function core_update_footer( $msg = '' ) { if ( ! isset( $cur->url ) ) $cur->url = ''; + if ( ! isset( $cur->response ) ) + $cur->response = ''; + switch ( $cur->response ) { case 'development' : return sprintf( __( 'You are using a development version (%1$s). Cool! Please stay updated.' ), $GLOBALS['wp_version'], 'update-core.php');