projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dae4d14
)
fix hidden form elements in addFieldMethod
author
Tim Mallezie
<tim.mallezie@chiro.be>
Thu, 21 May 2015 06:24:42 +0000
(08:24 +0200)
committer
Tim Mallezie
<tim.mallezie@chiro.be>
Thu, 21 May 2015 06:24:42 +0000
(08:24 +0200)
CRM/Core/Form.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Core/Form.php
b/CRM/Core/Form.php
index d5e95ef4337eaf4396d74d710be5cbdd90c58350..968a1988012d8bf2b773e991c3d306cee4b202df 100644
(file)
--- a/
CRM/Core/Form.php
+++ b/
CRM/Core/Form.php
@@
-1263,7
+1263,7
@@
class CRM_Core_Form extends HTML_QuickForm_Page {
break;
case 'hidden':
- $this->add('hidden', $name,
$label
, $props, $required);
+ $this->add('hidden', $name,
NULL
, $props, $required);
break;
case 'TextArea':