Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #62929
    Anonymous
    Inactive

    Hello Franky,

    in the current EME version 2.2.11 there is an error in line 1005.

    function eme_are_dates_valid($dates) {
       // if it is a series of dates
       if (strstr($date, ',')) {        // we need $dates
    	$dates_arr=explode(',',$dates);
       	foreach ( $dates_arr as $date ) {
    		if (!eme_is_date($date)) return false;
    	}
       } elseif (!eme_is_date($dates)) {
    	return false;
       }
       return true;
    }
    #62930
    Franky
    Keymaster

    Confirmed, I’ll fix and release another version asap.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.
Scroll to Top