From 6e668e1fcedcf4b1ed4b4996e164a88447775ea0 Mon Sep 17 00:00:00 2001 From: Mike Little Date: Fri, 8 Aug 2003 22:14:03 +0000 Subject: [PATCH] Fix bug with b2header and redefinition of get_helplink git-svn-id: https://develop.svn.wordpress.org/trunk@301 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/wp-options.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/wp-options.php b/wp-admin/wp-options.php index 41c00233a7..13bdce55bf 100644 --- a/wp-admin/wp-options.php +++ b/wp-admin/wp-options.php @@ -43,8 +43,8 @@ if ($option_group_id == '') { switch($action) { case "update": - $standalone = 1; - include("./b2header.php"); + $standalone = 0; + include_once("./b2header.php"); $any_changed = 0; // iterate through the list of options in this group @@ -100,7 +100,7 @@ case "update": default: $standalone = 0; - include ("./b2header.php"); + include_once("./b2header.php"); if ($user_level <= 3) { die("You have no right to edit the options for this blog.
Ask for a promotion to your blog admin :)"); }