From 18fb5941294a1907047a1be25c953883a363da97 Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Wed, 20 Oct 2010 13:38:50 +0000 Subject: [PATCH] Fix variable mis-name. git-svn-id: https://develop.svn.wordpress.org/trunk@15865 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 04bc79e534..eafbdeb4bd 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -4417,7 +4417,7 @@ function wp_find_hierarchy_loop_tortoise_hare( $callback, $start, $override = ar function show_admin_bar( $show = null ) { static $show_admin_bar = null; - if ( !isset($show_admin_var) ) { + if ( !isset($show_admin_bar) ) { if ( null !== $show ) $show_admin_bar = $show; elseif ( defined('WP_SHOW_ADMIN_BAR') )