فهرست منبع

fixed an error that wouldn't display "Password Incorrect". This cropped
up when we added redirect.php. Fixed now.

Luke Ehresman 24 سال پیش
والد
کامیت
065076b8ae
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      src/redirect.php

+ 3 - 0
src/redirect.php

@@ -59,6 +59,9 @@
       if ($force_username_lowercase)
           $username = strtolower($login_username);
       $imapConnection = sqimap_login($login_username, $key, $imapServerAddress, $imapPort, 0);
+	  if (!$imapConnection) {
+	  	exit;
+	  }
       sqimap_logout($imapConnection);
 
       setcookie("username", $login_username, 0, $base_uri);