|
@@ -129,17 +129,17 @@ function bcc_address($addr) {
|
|
|
if (!isset($i18n_php))
|
|
|
include("../functions/i18n.php");
|
|
|
|
|
|
- if(!isset($logged_in)) {
|
|
|
- set_up_language($squirrelmail_language, true);
|
|
|
- echo _("You must login first.");
|
|
|
+ if(!isset($logged_in) || !isset($username) || !isset($key)) {
|
|
|
+ include ("../themes/default_theme.php");
|
|
|
+ include ("../functions/display_messages.php");
|
|
|
+ printf('<html><BODY TEXT="%s" BGCOLOR="%s" LINK="%s" VLINK="%s" ALINK="%s">',
|
|
|
+ $color[8], $color[4], $color[7], $color[7], $color[7]);
|
|
|
+ plain_error_message(_("You need a valid user and password to access this page!")
|
|
|
+ . "<br><a href=\"../src/login.php\">"
|
|
|
+ . _("Click here to log back in.") . "</a>.", $color);
|
|
|
+ echo "</body></html>";
|
|
|
exit;
|
|
|
}
|
|
|
- if(!isset($username) || !isset($key)) {
|
|
|
- set_up_language($squirrelmail_language, true);
|
|
|
- echo _("You need a valid user and password to access this page!");
|
|
|
- exit;
|
|
|
- }
|
|
|
-
|
|
|
if (!isset($config_php))
|
|
|
include("../config/config.php");
|
|
|
if (!isset($array_php))
|