mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Unsetting redundant form data in parseParams()
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3860 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
f95285d75f
commit
eb59ae1534
1 changed files with 1 additions and 0 deletions
|
@ -375,6 +375,7 @@ class Dispatcher extends Object {
|
|||
|
||||
if (isset($params['form']['data'])) {
|
||||
$params['data'] = $params['form']['data'];
|
||||
unset($params['form']['data']);
|
||||
}
|
||||
|
||||
if (isset($_GET)) {
|
||||
|
|
Loading…
Reference in a new issue