From dccd38731da01a8ade75fa4de0d7935fc517da73 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sat, 27 Apr 2002 15:02:44 +0000 Subject: [PATCH] Patch #548696 --- ChangeLog | 14 ++++++++------ header.inc.php3 | 19 +++++++++++-------- 2 files changed, 19 insertions(+), 14 deletions(-) diff --git a/ChangeLog b/ChangeLog index 732fcb058..916351e35 100755 --- a/ChangeLog +++ b/ChangeLog @@ -7,18 +7,20 @@ $Source$ 2002-04-27 Alexander M. Turek * Recompressed old ChangeLog without saving its path in the archive. + * header.inc.php3: Patch #548696 (DB/Table titles should be links), + thanks to Ray Black . 2002-04-27 Loïc Chapeaux - * Documentation.html: - - xhtml fixes; - - added a faq entry about bug #547064 (JS error with textareas under - Mozilla). + * Documentation.html: + - xhtml fixes; + - added a faq entry about bug #547064 (JS error with textareas under + Mozilla). * libraries/display_tbl.lib.php3; libraries/functions.js: better fix against bug #547384 (Marker Color can't equal Pointer Color). * libraries/auth/config.auth.lib.php3, line 111: fixed a header problem. * scripts/create-release.sh: improved so a CVS branch tag may be used. - * lang/croatian-*; libraries/select_lang.lib.php3: new Croatian - translations thanks to Sime Essert . + * lang/croatian-*; libraries/select_lang.lib.php3: new Croatian + translations thanks to Sime Essert . * Compressed ChangeLog till the 2.2.6 release. 2002-04-26 Loïc Chapeaux diff --git a/header.inc.php3 b/header.inc.php3 index acc645223..30e0e2433 100755 --- a/header.inc.php3 +++ b/header.inc.php3 @@ -66,12 +66,15 @@ input.textfield {font-family: ; font-size: ; font-size: ; color: #000000; background-color: #FFFFFF} textarea {font-family: ; font-size: ; color: #000000; background-color: #FFFFFF} h1 {font-family: ; font-size: ; font-weight: bold} -A:link {font-family: ; font-size: ; text-decoration: none; color: #0000FF} -A:visited {font-family: ; font-size: ; text-decoration: none; color: #0000FF} -A:hover {font-family: ; font-size: ; text-decoration: underline; color: #FF0000} -A.nav:link {font-family: ; color: #000000} -A.nav:visited {font-family: ; color: #000000} -A.nav:hover {font-family: ; color: #FF0000} +a:link {font-family: ; font-size: ; text-decoration: none; color: #0000FF} +a:visited {font-family: ; font-size: ; text-decoration: none; color: #0000FF} +a:hover {font-family: ; font-size: ; text-decoration: underline; color: #FF0000} +a.nav:link {font-family: ; color: #000000} +a.nav:visited {font-family: ; color: #000000} +a.nav:hover {font-family: ; color: #FF0000} +a.h1:link {font-family: ; font-size: ; font-weight: bold; color: #000000} +a.h1:visited {font-family: ; font-size: ; font-weight: bold; color: #000000} +a.h1:hover {font-family: ; font-size: ; font-weight: bold; color: #FF0000} .nav {font-family: ; color: #000000} .warning {font-family: ; font-size: ; font-weight: bold; color: #FF0000} //--> @@ -157,9 +160,9 @@ echo "\n"; ' . $strDatabase . ' ' . htmlspecialchars($db) . ''; + echo '

' . $strDatabase . ' ' . htmlspecialchars($db) . ''; if (!empty($table)) { - echo ' - ' . $strTable . ' ' . htmlspecialchars($table) . ''; + echo ' - ' . $strTable . ' ' . htmlspecialchars($table) . ''; } echo ' ' . sprintf($strRunning, ' ' . (($cfg['Server']['verbose']) ? $cfg['Server']['verbose'] : $cfg['Server']['host']) . ''); echo '

' . "\n";