Removed bugs
[squirrelmail.git] / functions / auth.php
index 86e2182920264e0d458671e3a3763bb5442d96a8..8cddd0024bde4860ca5deb4a99115fbdde26b3a0 100644 (file)
 
    if (defined ('auth_php'))
       return; 
-   define ('auth_php', true); 
-
+   define ('auth_php', true);
+   
    function is_logged_in () {
+      global $squirrelmail_language;
+      
       if (session_is_registered('user_is_logged_in'))
          return;
-        
+
+      set_up_language($squirrelmail_language, true);
+      
       echo "<html><body bgcolor=\"ffffff\">\n";
       echo "<br><br>";
       echo "<center>";
       echo "<b>"._("You must be logged in to access this page.")."</b><br>";
-      echo "<a href=\"../src/login.php\">"._("Go to the login page")."</a>\n";
+      echo "<a href=\"../src/login.php\" target=\"_top\">"._("Go to the login page")."</a>\n";
       echo "</center>";
       echo "</body></html>\n";
       exit;