Browse Source

Disabling REST-compliant hidden field temporarily

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4399 3807eeeb-6ff5-0310-8944-8be069107fe0
nate 19 years ago
parent
commit
5a8cc752f1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cake/libs/view/helpers/form.php

+ 1 - 1
cake/libs/view/helpers/form.php

@@ -131,7 +131,7 @@ class FormHelper extends AppHelper {
 			case 'post':
 			case 'put':
 			case 'delete':
-				$append .= $this->hidden('_method', array('value' => up($options['type']), 'id' => $options['id'] . 'Method'));
+				//$append .= $this->hidden('_method', array('value' => up($options['type']), 'id' => $options['id'] . 'Method'));
 			default:
 				$htmlAttributes['method'] = 'post';
 			break;