Changeset ef4998c in github
- Timestamp:
- Sep 22, 2011 4:48:05 AM (20 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.7, release-0.8
- Children:
- 487173e
- Parents:
- bba2529
- Location:
- program
- Files:
-
- 2 edited
-
include/main.inc (modified) (2 diffs)
-
js/app.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/include/main.inc
r5f71297 ref4998c 706 706 * @return array Hash array with all request parameters 707 707 */ 708 function request2param($mode = RCUBE_INPUT_GPC )708 function request2param($mode = RCUBE_INPUT_GPC, $ignore = 'task|action') 709 709 { 710 710 $out = array(); … … 712 712 foreach ($src as $key => $value) { 713 713 $fname = $key[0] == '_' ? substr($key, 1) : $key; 714 $out[$fname] = get_input_value($key, $mode); 714 if ($ignore && !preg_match("/($ignore)/", $fname)) 715 $out[$fname] = get_input_value($key, $mode); 715 716 } 716 717 -
program/js/app.js
rbba2529 ref4998c 848 848 break; 849 849 } 850 else if (props) 851 url += '&_to='+urlencode(props); 850 852 851 853 this.redirect(url);
Note: See TracChangeset
for help on using the changeset viewer.
