Paul Sellis
Karma: 0
|
Re:Blank page... - 2010/06/16 13:12
... it's a problem with Virtuemart which already has defined a function used in components/com_glossary/cmsapi.interface.php We need to add : if( !function_exists('editorArea')) { }
| Code: | if( !function_exists('editorArea')) {
function editorArea($name, $content, $hiddenField, $width, $height, $col, $row) {
jimport( 'joomla.html.editor' );
$editor =& JFactory::getEditor();
echo $editor->display($hiddenField, $content, $width, $height, $col, $row);
}
}
|
Post edited by: Paul Sellis, at: 2010/06/21 16:41
|