Move error message on top of page.

This commit is contained in:
Michal Čihař
2005-11-23 16:45:13 +00:00
parent 62c6124e26
commit fef607cd64
2 changed files with 8 additions and 5 deletions

View File

@@ -45,6 +45,7 @@ $Source$
* libraries/common.lib.php: Do not complain if config file is not present,
as we can still work in this case (bug #1364647).
* lang/*: Added missing $strInvalidServerHostname.
* libraries/auth/cookie.auth.lib.php: Move error message on top of page.
2005-11-22 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* added test/theme.php: for testing themes

View File

@@ -140,6 +140,13 @@ echo sprintf( $GLOBALS['strWelcome'],
?>
</h1>
<?php
// Show error message
if ( !empty($conn_error)) {
echo '<div class="error"><h1>' . $GLOBALS['strError'] . '</h1>' . "\n";
echo $conn_error . '</div>' . "\n";
}
// Displays the languages form
if (empty($cfg['Lang'])) {
echo "\n";
@@ -161,11 +168,6 @@ echo sprintf( $GLOBALS['strWelcome'],
. '</html>';
exit();
}
if ( !empty($conn_error)) {
echo '<div class="error"><h1>' . $GLOBALS['strError'] . '</h1>' . "\n";
echo $conn_error . '</div>' . "\n";
}
?>
<br />
<!-- Login form -->