Opened 4 years ago

Closed 4 years ago

#1485797 closed Bugs (fixed)

Bug in svn_trunk 2362

Reported by: lacri Owned by:
Priority: 5 Milestone: 0.2.2
Component: PHP backend Version: git-master
Severity: normal Keywords:
Cc:

Description

i found a little bug in devel-api changeset 2362

else if ($msg_uid = $_SESSION['compose']['param']['_draft_uid']) {
  $RCMAIl->imap->set_mailbox($CONFIG['drafts_mbox']);
  $compose_mode = RCUBE_COMPOSE_DRAFT;
}

the bug is $RCMAIl->imap->set_mailbox($CONFIGdrafts_mbox?);

must changed in $RCMAIL->imap->set_mailbox($CONFIGdrafts_mbox?);

else if ($msg_uid = $_SESSION['compose']['param']['_draft_uid']) {
  $RCMAIL->imap->set_mailbox($CONFIG['drafts_mbox']);
  $compose_mode = RCUBE_COMPOSE_DRAFT;
}

Change History (1)

comment:1 Changed 4 years ago by alec

  • Milestone changed from later to 0.2.2
  • Resolution set to fixed
  • Status changed from new to closed
  • Version set to svn-trunk

Fixed in r2364/svn.

Note: See TracTickets for help on using tickets.