Fatal error: Cannot redeclare class Url in /home/accountname/public_html/components/com_cobalt/library/php/helpers/url.php on line 17
MijoEvents loads a class called "Url", and so does Cobalt, except that the Cobalt class is still being loaded even when inside the MijoEvents component.
The simple fix is to change components/com_cobalt/library/php/helpers/url.php
$component_params = JComponentHelper::getParams('com_cobalt');
define('COBS', $component_params->get('separator', ':'));
To:
$component_params = JComponentHelper::getParams('com_cobalt');
define('COBS', $component_params->get('separator', ':'));
if (class_exists('Url')) return false; //HW:
Fatal error: Cannot redeclare class Url in /home/accountname/public_html/components/com_cobalt/library/php/helpers/url.php on line 17
MijoEvents loads a class called "Url", and so does Cobalt, except that the Cobalt class is still being loaded even when inside the MijoEvents component.
The simple fix is to change components/com_cobalt/library/php/helpers/url.php
To: