Pārlūkot izejas kodu

$just_logged_in need to be set to 1 not 0. This kept the $motd from ever showing, it also broke my patch for auto recreating Trash and Sent folders. I don't believe it affect anything else.

cosworth 24 gadi atpakaļ
vecāks
revīzija
e14c37aaf1
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/webmail.php

+ 1 - 1
src/webmail.php

@@ -90,7 +90,7 @@
    } else if ($right_frame == 'folders.php') {
       $right_frame_url = 'folders.php';
    } else {
-      if (!isset($just_logged_in)) $just_logged_in = 0;
+      if (!isset($just_logged_in)) $just_logged_in = 1;
       $right_frame_url = "right_main.php?just_logged_in=$just_logged_in";
    }