Browse Source

$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 năm trước cách đây
mục cha
commit
e14c37aaf1
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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";
    }