diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-02-24 11:09:28 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-02-24 11:09:28 +0000 |
commit | 74ad87df5c696b62e73bc1b5b7c5fceea75932d7 (patch) | |
tree | 24e19cdf415f331ede62bc0e4a01dc6d6788c545 | |
parent | 425c55726848136303479a8be6a8aec9e71ddbac (diff) | |
download | forums-74ad87df5c696b62e73bc1b5b7c5fceea75932d7.tar forums-74ad87df5c696b62e73bc1b5b7c5fceea75932d7.tar.gz forums-74ad87df5c696b62e73bc1b5b7c5fceea75932d7.tar.bz2 forums-74ad87df5c696b62e73bc1b5b7c5fceea75932d7.tar.xz forums-74ad87df5c696b62e73bc1b5b7c5fceea75932d7.zip |
no h2
git-svn-id: file:///svn/phpbb/trunk@7053 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/functions.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index a6826e991f..3cc0d23063 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -3284,7 +3284,8 @@ function msg_handler($errno, $msg_text, $errfile, $errline) echo 'a:link, a:active, a:visited { color: #006699; text-decoration: none; } a:hover { color: #DD6900; text-decoration: underline; } '; echo '#wrap { padding: 0 20px 15px 20px; min-width: 615px; } #page-header { text-align: right; height: 40px; } #page-footer { clear: both; font-size: 1em; text-align: center; } '; echo '.panel { margin: 4px 0; background-color: #FFFFFF; border: solid 1px #A9B8C2; } '; - echo '#errorpage #page-header a { font-weight: bold; line-height: 6em; } #errorpage #content { padding: 10px; } #errorpage #content h1 { line-height: 1.2em; margin-bottom: 0; color: #DF075C; } #errorpage #content h2 { margin-top: 20px; margin-bottom: 5px; border-bottom: 1px solid #CCCCCC; padding-bottom: 5px; color: #333333; } '; + echo '#errorpage #page-header a { font-weight: bold; line-height: 6em; } #errorpage #content { padding: 10px; } #errorpage #content h1 { line-height: 1.2em; margin-bottom: 0; color: #DF075C; } '; + echo '#errorpage #content div { margin-top: 20px; margin-bottom: 5px; border-bottom: 1px solid #CCCCCC; padding-bottom: 5px; color: #333333; font: bold 1.2em "Lucida Grande", Arial, Helvetica, sans-serif; text-decoration: none; line-height: 120%; text-align: left; } '; echo "\n" . '//-->' . "\n" . '</style'; echo '</style>'; echo '</head>'; @@ -3297,7 +3298,7 @@ function msg_handler($errno, $msg_text, $errfile, $errline) echo ' <div id="content">'; echo ' <h1>General Error</h1>'; - echo ' <h2>' . $msg_text . '</h2>'; + echo ' <div>' . $msg_text . '</div>'; if (!empty($config['board_contact'])) { |