Home » HTML » HTML_QuickForm » Bug #8372
HTML_QuickForm_radio default value with NULL and 0
Details
| Submitted | 2006-08-07 12:20 UTC |
|---|---|
| From | oscar at grecom dot nl |
| Status | Duplicate |
| Package | HTML_QuickForm |
| PHP Version | 4.4.0 |
| OS | Linux |
| Roadmaps | (Not assigned) |
Comments
[2006-08-07 12:20 UTC] oscar at grecom dot nl
Description:
------------
In the onQuickFormEvent function is the value check at line 216 incorrect:
if ($value == $this->getValue()) {
[..]
}
This should be:
if ($value === $this->getValue()) {
[..]
}