Good Evening Anmari,
We recently purchased the amr-events plugin as well as downloaded the free events list plugin and we are doing the initial setup right now. We do have a php error throwing where I have isolated an if statement that might have an issue.
Here's our system environment:
Wordpress: 3.4.2
Network/Multisite
amr events: 3.0.10
amr events calendar or lists with ical files: 4.0.30
We have a multisite and we have network installed both AMR Events as well as the events list plugin. When an event was made, we got the following error persistently:
Notice: Undefined index: type in /home/ourhost/public_html/wp-content/plugins/amr-ical-events-list/includes/amr-pluggable.php on line 753
I have commented out the if statement for line 753-759, and this has stopped the error from generating. Here's the exact chunk of code:
if (($e['type'] == 'VFREEBUSY') ) {
$e['excerpt'] = $e['SUMMARY'];
$e['DESCRIPTION'] = $e['SUMMARY'];
if (!empty($amr_options['freebusymessage']))
$e['SUMMARY'] = $amr_options['freebusymessage'];
}
Is this chunk of code critical to the plugin or could it be commented out until the next update? Thanks in advance.
resolved