瀏覽代碼

$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 年之前
父節點
當前提交
e14c37aaf1
共有 1 個文件被更改,包括 1 次插入1 次删除
  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";
    }