Fix issue with token checking.
authorMichael M Slusarz <slusarz@curecanti.org>
Tue, 6 Jan 2009 06:56:00 +0000 (23:56 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Tue, 6 Jan 2009 06:56:00 +0000 (23:56 -0700)
imp/mailbox.php

index 3fd639c..bba8097 100644 (file)
@@ -104,7 +104,7 @@ $do_filter = false;
 $open_compose_window = null;
 
 /* Run through the action handlers */
-if ($actionID != 'message_missing') {
+if ($actionID && ($actionID != 'message_missing')) {
     $result = IMP::checkRequestToken('imp.mailbox', Util::getFormData('mailbox_token'));
     if (is_a($result, 'PEAR_Error')) {
         $notification->push($result);