Pārlūkot izejas kodu

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

Luke Ehresman 24 gadi atpakaļ
vecāks
revīzija
065076b8ae
1 mainītis faili ar 3 papildinājumiem un 0 dzēšanām
  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);