more warnings removed
[squirrelmail.git] / src / login.php
index 6e2119b18387dc5661d358aecbd22af37d41e4cc..d6413e4ab14661b632483a8fd12818ed5da2b58e 100644 (file)
@@ -8,12 +8,13 @@
     **  This a simple login screen. Some housekeeping is done to clean
     **  cookies and find language.
     **
+    **  $Id$
     **/
 
-   if (!isset($config_php))
-      include("../config/config.php");
    if (!isset($strings_php))
       include("../functions/strings.php");
+   if (!isset($config_php))
+      include("../config/config.php");
    if (!isset($i18n_php))
       include("../functions/i18n.php");
    if (!isset($plugin_php))
@@ -27,8 +28,8 @@
    ereg ("(^.*/)[^/]+/[^/]+$", $PHP_SELF, $regs);
    $base_uri = $regs[1];
 
-   setcookie("username", "", 0, $base_uri);
-   setcookie("key", "", 0, $base_uri);
+   setcookie("username", '', 0, $base_uri);
+   setcookie("key", '', 0, $base_uri);
    setcookie("logged_in", 0, 0, $base_uri);
 
    // In case the last session was not terminated properly, make sure
@@ -43,7 +44,7 @@
    echo "<BODY TEXT=000000 BGCOLOR=#FFFFFF LINK=0000CC VLINK=0000CC ALINK=0000CC>\n";
    echo "<FORM ACTION=\"redirect.php\" METHOD=\"POST\" NAME=f>\n";
    
-   $username_form_name = 'username';
+   $username_form_name = 'login_username';
    $password_form_name = 'secretkey';
    do_hook('login_top');