thomascube
2011-09-22 ef4998c11084b2c99f8af9976f9860d5f7709a0f
Fix compose command from other tasks than mail and address book; skip common request parameters

2 files modified
7 ■■■■ changed files
program/include/main.inc 5 ●●●●● patch | view | raw | blame | history
program/js/app.js 2 ●●●●● patch | view | raw | blame | history
program/include/main.inc
@@ -705,13 +705,14 @@
 * @param  int   Source to get value from (GPC)
 * @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();
  $src = $mode == RCUBE_INPUT_GET ? $_GET : ($mode == RCUBE_INPUT_POST ? $_POST : $_REQUEST);
  foreach ($src as $key => $value) {
    $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;
program/js/app.js
@@ -847,6 +847,8 @@
          break;
        }
        else if (props)
          url += '&_to='+urlencode(props);
        this.redirect(url);
        break;