diff options
author | alecpl <alec@alec.pl> | 2012-04-10 07:02:45 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-04-10 07:02:45 +0000 |
commit | a274fb2e20215716389ec3709f0726b7002521f3 (patch) | |
tree | 12b6f946f0ac6da8c3d11659dfcda22d953b1a25 /program/steps/mail/compose.inc | |
parent | a945da6171c00c132cbfdd8420c3aff978e2c40a (diff) |
- Fix so "Back" from compose/show doesn't reset search request (#1488238)
Diffstat (limited to 'program/steps/mail/compose.inc')
-rw-r--r-- | program/steps/mail/compose.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 9475f34c5..ebf79be4e 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -118,7 +118,11 @@ if (!is_array($COMPOSE)) } // redirect to a unique URL with all parameters stored in session - $OUTPUT->redirect(array('_action' => 'compose', '_id' => $COMPOSE['id'])); + $OUTPUT->redirect(array( + '_action' => 'compose', + '_id' => $COMPOSE['id'], + '_search' => $_REQUEST['_search'], + )); } |