$reload has now true boolean values

This commit is contained in:
Loïc Chapeaux
2001-09-07 19:42:41 +00:00
parent aa02f1eb70
commit 0ac430fd27
4 changed files with 6 additions and 6 deletions

View File

@@ -103,13 +103,13 @@ else if ((get_magic_quotes_gpc() && stripslashes($btnDrop) == $strYes)
case 'drop_db':
$a_query = 'DROP DATABASE '
. backquote(urldecode($selected[$i]));
$reload = 'true';
$reload = 1;
break;
case 'drop_tbl':
$a_query = 'DROP TABLE '
. backquote(urldecode($selected[$i]));
$reload = 'true';
$reload = 1;
break;
case 'empty_tbl':