From f6c347a775a2f5128e690877f45cc5f3f7f4ca2d Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 27 May 2009 17:36:57 +0000 Subject: [PATCH] variable could be not set at this point --- db_structure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_structure.php b/db_structure.php index 07218a5cf0..b66eb8e934 100644 --- a/db_structure.php +++ b/db_structure.php @@ -29,7 +29,7 @@ if (empty($is_info)) { // db_structure.php -> libraries/mult_submits.inc.php -> sql.php // -> db_structure.php and if we got an error on the multi submit, // we must display it here and not call again mult_submits.inc.php - if (!$error) { + if (! isset($error) || FALSE === $error) { require './libraries/mult_submits.inc.php'; } if (empty($message)) { -- 2.11.4.GIT