Fix PHP warning.

1.10.x
Julio Montoya 10 years ago
parent c86895539f
commit a9a92938fd
  1. 2
      main/inc/lib/pear/HTML/QuickForm/RuleRegistry.php

@ -178,7 +178,7 @@ class HTML_QuickForm_RuleRegistry
*/
function validate($ruleName, $values, $options = null, $multiple = false)
{
$rule =& $this->getRule($ruleName);
$rule = $this->getRule($ruleName);
if (is_array($values) && !$multiple) {
$result = 0;
foreach ($values as $value) {

Loading…
Cancel
Save