Topic: LuxCal 5.3.3 - PHP error messages on page: Changes

When the Changes page is selected and changed events are found, a list with PHP error messages appears in the background of the page.

This can be solved as follows:
• Edit the file "common/retrievc.php and on lines 105, 106 and 107 replace $row by $evt. Ten times!

So lines 105 - 107 should look like:

      $evt['ald'] = ($evt['sti'] == '00:00' and $evt['eti'] == '23:59');
      $evt['ntm'] = ($evt['sti'] == '00:00' and $evt['eti'] == '00:00');
      if ($evt['ald'] or $evt['ntm']) { $evt['sti'] = $evt['eti'] = ''; } //all day or no time: start/end time = ''

Roel