From c3e693e16c6cfd532288fc6170f3e82c24214058 Mon Sep 17 00:00:00 2001 From: Steve Alberty Date: Sat, 23 Jun 2001 22:16:01 +0000 Subject: [PATCH] merge with db_dump.php --- tbl_dump.php3 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tbl_dump.php3 b/tbl_dump.php3 index 28081033e..63145b115 100755 --- a/tbl_dump.php3 +++ b/tbl_dump.php3 @@ -83,10 +83,11 @@ else echo "# http://phpwizard.net/phpMyAdmin/$crlf"; echo "# http://phpmyadmin.sourceforge.net/ (unofficial)$crlf"; echo "#$crlf"; - echo "# $strHost: ".$cfgServer['host']."$crlf"; + echo "# $strHost: ".$cfgServer['host']; + if(!empty($cfgServer['port'])) echo ":" . $cfgServer['port']; + echo $crlf; echo "# $strGenTime: ".date("F j, Y, g:i a")."$crlf"; echo "# $strServerVersion: ".MYSQL_MAJOR_VERSION.".".MYSQL_MINOR_VERSION."$crlf"; - if(!empty($cfgServer['port'])) echo ":" . $cfgServer['port']; echo "# $strDatabase: $db$crlf"; $i = 0;