# This patch file was generated by NetBeans IDE # This patch can be applied using context Tools: Apply Diff Patch action on respective folder. # It uses platform neutral UTF-8 encoding. # Above lines and this line are ignored by the patching process. --- administrator/components/com_comprofiler/comprofiler.class.php +++ administrator/components/com_comprofiler/comprofiler.class.php @@ -4102,13 +4102,13 @@ return $results; } function _renderFields( $pluginTabContent, $user, $output, $formatting, $reason, $rowClasses ) { - global $_CB_OneTwoRowsStyleToggle; + global $_PLUGINS, $_CB_OneTwoRowsStyleToggle; $rendered = null; $formattingFields = $this->_stepDownFormatting[$formatting]; foreach ($pluginTabContent as $field ) { $saveToggle = $_CB_OneTwoRowsStyleToggle; - $rendered .= cbFieldHandler::renderFieldHtml( $field, $user, $field->_value, $output, $formattingFields, $reason, $rowClasses ); + $rendered .= $_PLUGINS->callField( $field->type, 'renderFieldHtml', array( &$field, &$user, $field->_value, $output, $formattingFields, $reason, $rowClasses ), $field ); if ( isset( $field->_rowNoToggle ) ) { $_CB_OneTwoRowsStyleToggle = $saveToggle; }