Skip to content

Commit

Permalink
Fix wrong var in Callback renderer
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pear/packages/HTML_QuickForm2/trunk@309737 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
golgote committed Mar 27, 2011
1 parent 4fe9e35 commit ad977f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HTML/QuickForm2/Renderer/Callback.php
Expand Up @@ -627,7 +627,7 @@ public function setElementCallbackForGroupClass($groupClass, $elementClass, $cal
public function setElementCallbackForGroupId($groupId, $elementClass, $callback)
{
if ($this->_validateCallback($callback)) {
$this->elementTemplatesForGroupId[$groupId][strtolower($elementClass)] = $callback;
$this->elementCallbacksForGroupId[$groupId][strtolower($elementClass)] = $callback;
}
return $this;
}
Expand Down

0 comments on commit ad977f6

Please sign in to comment.