Email address confirmation now working (not in registration):
[shipsimu.git] / inc / classes / main / helper / class_BaseHelper.php
index cc829fd0ea053d00dab82c363d9deee3f77f9c6d..94f48fbbc3a4171d2dd0bf878ca84b165237110e 100644 (file)
@@ -99,7 +99,7 @@ class BaseHelper extends BaseFrameworkSystem {
                $fieldValue = $this->getValueField($fieldName);
 
                // Now filter it through the value through the filter method
-               $filteredValue = call_user_func_array(array($this, "doFilter" . ucfirst($filterMethod)), array($fieldValue));
+               $filteredValue = call_user_func_array(array($this, "doFilter" . $this->convertToClassName($filterMethod)), array($fieldValue));
 
                // Assign it with a template variable
                $this->getTemplateInstance()->assignVariable("block_" . $fieldName, $filteredValue);