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 years ago
parent
commit
e14c37aaf1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/webmail.php

+ 1 - 1
src/webmail.php

@@ -90,7 +90,7 @@
    } else if ($right_frame == 'folders.php') {
    } else if ($right_frame == 'folders.php') {
       $right_frame_url = 'folders.php';
       $right_frame_url = 'folders.php';
    } else {
    } 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";
       $right_frame_url = "right_main.php?just_logged_in=$just_logged_in";
    }
    }