fixing incorrect post data

This commit is contained in:
Ceeram 2012-02-22 22:49:42 +01:00
parent 2e2ee3b096
commit 55b8f66095

View file

@ -179,8 +179,7 @@ class CakeRequest implements ArrayAccess {
}
if (count($this->data) <= 1) {
$this->data = $data;
}
if (count($this->data) > 1) {
} else {
unset($this->data['data']);
$this->data = Set::merge($this->data, $data);
}