JParameter render function error for none default group. - Joomla! Forum - community, help and support
jparameter class support parameters in group. however, when set value parameter in group other '_default', render function not value.
the problem solved modify line 298 of file libraries/joomla/html/parameter.php
change
to
the problem solved modify line 298 of file libraries/joomla/html/parameter.php
change
code: select all
foreach ($this->_xml[$group]->children() $param) {
$results[] = $this->getparam($param, $name);
}
to
code: select all
foreach ($this->_xml[$group]->children() $param) {
$results[] = $this->getparam($param, $name, $group);
}
would please post in tracker?
http://joomlacode.org/gf/project/joomla ... cker_id=32
if attach patch file extremely helpful.
http://joomlacode.org/gf/project/joomla ... cker_id=32
if attach patch file extremely helpful.
Comments
Post a Comment