Hello Franky,
I have a problem with the pagination on the events listing page.
let’s suppose my events are created until mai, but I can still navigate to juin using the “next month” button.
I checked the code and this is not supposed to happend (eme_events.php line 918) but $limit_end return the next month date event when there is no event. For the moment I patched my self just adding a “-1” to the test.
// to prevent going on indefinitely and thus allowing search bots to go on for ever,
// we stop providing links if there are no more events left
if (eme_count_events_older_than($limit_start) == 0)
$prev_text = “”;
if (eme_count_events_newer_than($limit_end)-1 == 0)
$next_text = “”;