Fix compose command from other tasks than mail and address book; skip common request parameters

release-0.7
thomascube 13 years ago
parent bba25299f8
commit ef4998c110

@ -705,13 +705,14 @@ function parse_input_value($value, $allow_html=FALSE, $charset=NULL)
* @param int Source to get value from (GPC) * @param int Source to get value from (GPC)
* @return array Hash array with all request parameters * @return array Hash array with all request parameters
*/ */
function request2param($mode = RCUBE_INPUT_GPC) function request2param($mode = RCUBE_INPUT_GPC, $ignore = 'task|action')
{ {
$out = array(); $out = array();
$src = $mode == RCUBE_INPUT_GET ? $_GET : ($mode == RCUBE_INPUT_POST ? $_POST : $_REQUEST); $src = $mode == RCUBE_INPUT_GET ? $_GET : ($mode == RCUBE_INPUT_POST ? $_POST : $_REQUEST);
foreach ($src as $key => $value) { foreach ($src as $key => $value) {
$fname = $key[0] == '_' ? substr($key, 1) : $key; $fname = $key[0] == '_' ? substr($key, 1) : $key;
$out[$fname] = get_input_value($key, $mode); if ($ignore && !preg_match("/($ignore)/", $fname))
$out[$fname] = get_input_value($key, $mode);
} }
return $out; return $out;

@ -847,6 +847,8 @@ function rcube_webmail()
break; break;
} }
else if (props)
url += '&_to='+urlencode(props);
this.redirect(url); this.redirect(url);
break; break;

Loading…
Cancel
Save