Updated indonesian translation
[squirrelmail.git] / functions / auth.php
index f302a496e021bdb2ddb3f6d2d23f25a1489a0c23..8cddd0024bde4860ca5deb4a99115fbdde26b3a0 100644 (file)
@@ -8,16 +8,26 @@
  ** $Id$
  **/
 
-   $auth_php = true;
-
+   if (defined ('auth_php'))
+      return; 
+   define ('auth_php', true);
+   
    function is_logged_in () {
-      if (!session_is_registered('user_is_logged_in')) {
-         echo _("You must login first.");
-         echo "</body></html>\n\n";
-         exit;
-      } else {
-         return true;
-      }
+      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\" target=\"_top\">"._("Go to the login page")."</a>\n";
+      echo "</center>";
+      echo "</body></html>\n";
+      exit;
    }
 
 ?>