Conflict with ExtCalendar for Joomla

plsg

Joined: 2002-12-01
Posts: 1
Posted: Wed, 2006-03-15 06:12

For some reason the gallery random block doesn't seem to play well with Joomla (1.0.8) ExtCalendar (0.9.1). The error I get is:
Fatal error: Cannot redeclare stripslashes_deep() (previously declared in {...}/components/com_extcalendar/config.inc.php:48)

Any suggestions? Thanks.

 
ckdake
ckdake's picture

Joined: 2004-02-18
Posts: 2258
Posted: Thu, 2006-03-16 20:16

find where it is trying to declare stripslashes_deep() and do something like

if (!function_exists("stripslashes_deep")) {
function stripslashes_deep() {

blah 
blah
blah

}
}

--
http://ckdake.com/

If you found my help useful, please consider donating to Gallery.

 
Götterbote (not verified)

Posted: Wed, 2007-05-23 08:16

Better you describe like this:

Quote:
if (!function_exists('stripslashes_deep')) {
...
}

(With single-marks)
Tobi
(With that, it works fine for me)