table name should be displayed on top

This commit is contained in:
Marc Delisle
2010-08-30 13:28:51 -04:00
parent fe868a5bf2
commit c5ab6175cd

View File

@@ -127,7 +127,7 @@ if (!$GLOBALS['is_ajax_request']) {
// if the table is being dropped, $_REQUEST['purge'] is set // if the table is being dropped, $_REQUEST['purge'] is set
// (it always contains "1") // (it always contains "1")
// so do not display the table name in upper div // so do not display the table name in upper div
} elseif (strlen($GLOBALS['table']) && ! (isset($_REQUEST['purge']))) { if (strlen($GLOBALS['table']) && ! (isset($_REQUEST['purge']))) {
require_once './libraries/tbl_info.inc.php'; require_once './libraries/tbl_info.inc.php';
echo $separator; echo $separator;
@@ -175,6 +175,7 @@ if (!$GLOBALS['is_ajax_request']) {
} }
} }
} }
}
echo '</div>'; echo '</div>';
} }
/** /**