Home » HTML » HTML_QuickForm » Bug #1506
Missing feature in ITDynamic: element name block within groups
Details
| Submitted | 2004-05-26 10:34 UTC |
|---|---|
| From | bmansion at mamasam dot com |
| Assigned | mansion |
| Status | Closed |
| Package | HTML_QuickForm |
| PHP Version | Irrelevant |
| Roadmaps | (Not assigned) |
Comments
[2004-05-26 10:34 UTC] bmansion at mamasam dot com
Description:
------------
I suggest we add support for search/find blocks using the element name within a group.
At the moment, only qf_group_element and qf_group_{type} are supported. We should add qf_group_{name}as well.
Line 248-...
if ($this->_tpl->blockExists($prefix . '_' . $type)) {
return $prefix . '_' . $type;
} else if ($this->_tpl->blockExists($prefix . '_' . $name)) {
return $prefix . '_' . $name;
} else {
return $prefix . '_element';
}
[2004-06-02 16:48 UTC] bmansion at mamasam dot com
This bug has been fixed in CVS.
In case this was a documentation problem, the fix will show up at the
end of next Sunday (CET) on pear.php.net.
In case this was a pear.php.net website problem, the change will show
up on the website in short time.
Thank you for the report, and for helping us make PEAR better.