From d8b886461ab39792dae69eff60136779385cbe32 Mon Sep 17 00:00:00 2001 From: westi Date: Fri, 29 Oct 2010 07:46:35 +0000 Subject: [PATCH] We never want an admin bar on an APP request either. See #14772. git-svn-id: http://svn.automattic.com/wordpress/trunk@16072 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-app.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-app.php b/wp-app.php index 2eaf6195e7..5a58dc36a9 100644 --- a/wp-app.php +++ b/wp-app.php @@ -11,6 +11,7 @@ * @var bool */ define('APP_REQUEST', true); +define('WP_SHOW_ADMIN_BAR' , false); /** Set up WordPress environment */ require_once('./wp-load.php');