Changeset a274fb2e in github
- Timestamp:
- Apr 10, 2012 3:02:45 AM (14 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
- Children:
- d6eb7c0
- Parents:
- a945da6
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
program/js/app.js (modified) (2 diffs)
-
program/steps/mail/compose.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r1b30a71 ra274fb2e 2 2 =========================== 3 3 4 - Fix so "Back" from compose/show doesn't reset search request (#1488238) 4 5 - Add option to delete messages instead of moving to Trash when in Junk folder (#1486686) 5 6 - Fix invisible cursor when replying to a html message (#1487073) -
program/js/app.js
ra945da6 ra274fb2e 570 570 571 571 case 'list': 572 this.reset_qsearch(); 572 if (props && props != '') 573 this.reset_qsearch(); 573 574 if (this.task == 'mail') { 574 575 this.list_mailbox(props); … … 858 859 if (props) 859 860 url += '&_to='+urlencode(props); 861 // also send search request so we can go back to search result after message is sent 862 if (this.env.search_request) 863 url += '&_search='+this.env.search_request; 860 864 } 861 865 // modify url if we're in addressbook -
program/steps/mail/compose.inc
r252d274 ra274fb2e 119 119 120 120 // redirect to a unique URL with all parameters stored in session 121 $OUTPUT->redirect(array('_action' => 'compose', '_id' => $COMPOSE['id'])); 121 $OUTPUT->redirect(array( 122 '_action' => 'compose', 123 '_id' => $COMPOSE['id'], 124 '_search' => $_REQUEST['_search'], 125 )); 122 126 } 123 127
Note: See TracChangeset
for help on using the changeset viewer.
