Changeset 5264 in subversion
- Timestamp:
- Sep 21, 2011 4:43:47 PM (20 months ago)
- Location:
- trunk/roundcubemail/program
- Files:
-
- 2 edited
-
include/rcmail.php (modified) (1 diff)
-
js/app.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/include/rcmail.php
r5240 r5264 484 484 'groups' => $this->address_books['0']->groups, 485 485 'readonly' => $this->address_books['0']->readonly, 486 'autocomplete' => in_array('sql', $autocomplete) 486 'autocomplete' => in_array('sql', $autocomplete), 487 'undelete' => $this->address_books['0']->undelete && $this->config->get('undo_timeout'), 487 488 ); 488 489 } -
trunk/roundcubemail/program/js/app.js
r5262 r5264 3995 3995 // exit if no mailbox specified or if selection is empty 3996 3996 var selection = this.contact_list.get_selection(); 3997 if (!(selection.length || this.env.cid) || !confirm(this.get_label('deletecontactconfirm'))) 3997 var undelete = this.env.address_sources[this.env.source].undelete; 3998 if (!(selection.length || this.env.cid) || (!undelete && !confirm(this.get_label('deletecontactconfirm')))) 3998 3999 return; 3999 4000
Note: See TracChangeset
for help on using the changeset viewer.
