diff --git a/ChangeLog b/ChangeLog index 7f52399eb..26d0af3f8 100755 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,8 @@ $Source$ multiple tables if the "onsubmit" event is handled by the browser. * mult_submits.inc.php3: removed the confirmation stage for "OPTIMIZE" statements. + * header.inc.php3, line 89: patch #531864 - display something in title when + no db thanks to Michal Cihar. 2002-03-20 Marc Delisle * lang/*, removed $strSequence diff --git a/header.inc.php3 b/header.inc.php3 index 7b03672da..1c25649e8 100755 --- a/header.inc.php3 +++ b/header.inc.php3 @@ -86,7 +86,7 @@ if (isset($table)) { $title .= (empty($title) ? '' : '.') . str_replace('\'', '\\\'', $table); } if (!empty($cfgServer) && isset($cfgServer['host'])) { - $title .= (empty($title) ? '' : ' ') + $title .= (empty($title) ? 'phpMyAdmin ' : ' ') . sprintf($strRunning, (empty($cfgServer['verbose']) ? str_replace('\'', '\\\'', $cfgServer['host']) : str_replace('\'', '\\\'', $cfgServer['verbose']))); } $title .= (empty($title) ? '' : ' - ') . 'phpMyAdmin ' . PMA_VERSION;