Quote:
Originally Posted by fookaa
I get fatal errors too.....
All else works perfectly on 4.1.10 except when i click on a day with more than 1 event i get this
If i click on any day with more than 1 event with attendance turned on i get that error
Any assistance would be great 
EDIT: Disabling the mod stops teh problem ....
|
Not sure if anyone has answered your question but you can address the Fatal Erro by wrapping the function with a check in your Plugin Manager.
Edit Plugin GETDAY_EVENT: Add RSVPs and Form to Event
FIND

at top of plugin)
Code:
function array_prep(&$array) {
foreach ($array as &$item) {
$item = trim(strtolower($item));
}
}
CHANGE IT TO:
Code:
if(!function_exists('array_prep')) {
function array_prep(&$array) {
foreach ($array as &$item) {
$item = trim(strtolower($item));
}
}
}