I am consistently getting this error in my logs:
[10-Mar-2017 20:54:32 UTC] PHP Notice: Array to string conversion in …/wp-content/plugins/events-calendar-pro/src/Tribe/Recurrence/Meta.php on line 1508
Ive tracked it down to this line in the code:
lines 1389/1390
`$days_of_week = implode( ‘, ‘, $weekdays );
$days_of_week = preg_replace( ‘/(.*),/’, ‘$1, ‘ . $date_strings[‘collection_joiner’], $weekdays );`
You are converting to string and the referring to the $weekdays array which make $days_of_week an array again.
Should the second line be?
$days_of_week = preg_replace( '/(.*),/', '$1, ' . $date_strings['collection_joiner'], $days_of_week );
Thanks