- Create a generic function to empty a folder tree, thanks to
[squirrelmail.git] / src / login.php
index 9709cda1f1b9238220df8711269b8943277168b4..90f16c3f9f86ce16977599606102db5a4acbf2ab 100644 (file)
@@ -3,7 +3,7 @@
 /**
  * login.php -- simple login screen
  *
- * Copyright (c) 1999-2004 The SquirrelMail Project Team
+ * Copyright (c) 1999-2005 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This a simple login screen. Some housekeeping is done to clean
@@ -51,11 +51,11 @@ $base_uri = sqm_baseuri();
  */
 
 sqsession_destroy();
+
 header('Pragma: no-cache');
 
 /**
- * This detects if the IMAP server has logins disabled, and if so, 
+ * This detects if the IMAP server has logins disabled, and if so,
  * squelches the display of the login form and puts up a message
  * explaining the situation.
  */
@@ -67,7 +67,7 @@ if($imap_auth_mech == 'login') {
         $string = _("The IMAP server is reporting that plain text logins are disabled.").'<br />'.
             _("Using CRAM-MD5 or DIGEST-MD5 authentication instead may work.").'<br />';
         if (!$use_imap_tls) {
-            $string .= _("The use of TLS may allow SquirrelMail to login.").'<br />';
+            $string .= _("Also, the use of TLS may allow SquirrelMail to login.").'<br />';
         }
         $string .= _("Please contact your system administrator and report this error.");
         error_box($string,$color);
@@ -139,8 +139,8 @@ echo html_tag( 'table',
                 ' /><br />' . "\n"
               : '' ).
             ( (isset($hide_sm_attributions) && $hide_sm_attributions) ? '' :
-            '<small>' . sprintf (_("SquirrelMail version %s"), $version) . '<br />' ."\n".
-            '  ' . _("By the SquirrelMail Development Team") . '<br /></small>' . "\n" ) .
+            '<small>' . _("SquirrelMail Webmail Application") . '<br />' ."\n".
+            '  ' . _("By the SquirrelMail Project Team") . '<br /></small>' . "\n" ) .
             html_tag( 'table',
                 html_tag( 'tr',
                     html_tag( 'td',
@@ -171,7 +171,7 @@ echo html_tag( 'table',
                             ) ,
                         'center', $color[4], 'border="0" width="100%"' ) ,
                     'left', $color[4] )
-                ) . 
+                ) .
                 html_tag( 'tr',
                     html_tag( 'td',
                         '<center>'. addSubmit(_("Login")) .'</center>',