diff options
| -rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ if ( "" === $_REQUEST['user'] || "" === $_REQUEST['token'] ) { exit; } -if ( "" === $_REQUEST['mailbox'] ) { +if ( "" === $_REQUEST['mailbox'] || is_null( $_REQUEST['mailbox'] ) ) { $inbox = "INBOX"; } $inbox = explode(",", $inbox); |
