Fix warnings when error_reporting is set to E_ALL

This commit is contained in:
Loïc Chapeaux
2001-05-08 00:00:03 +00:00
parent de5406beed
commit 5197539496
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ include("lib.inc.php3");
// Bookmark Support // Bookmark Support
if($sql_bookmark != "") if(!empty($sql_bookmark))
$sql_query = $sql_bookmark; $sql_query = $sql_bookmark;
// //

View File

@@ -109,7 +109,7 @@ else {
// Bookmark Support // Bookmark Support
if($cfgBookmark['db'] && $cfgBookmark['table'] && $db!=$cfgBookmark['db'] && !$sql_bookmark) if($cfgBookmark['db'] && $cfgBookmark['table'] && $db!=$cfgBookmark['db'] && empty($sql_bookmark))
{ {
echo "<form method=\"post\" action=\"tbl_replace.php3\">\n"; echo "<form method=\"post\" action=\"tbl_replace.php3\">\n";
echo "<i>$strOr</i><br><br>\n"; echo "<i>$strOr</i><br><br>\n";