The view titled "station_schedule_day" has a permission requirement of "view schedule content," though there is no "view schedule content," only "view station schedule content." This will prevent every user but the admin user (or a user with access all views permission) from seeing this view.
In the file station_schedule.views_default.inc, line 590, this needs to be changed from:
$handler->override_option('access', array(
'type' => 'perm',
'perm' => 'view schedule content',
));
To:
$handler->override_option('access', array(
'type' => 'perm',
'perm' => 'view station schedule content',
));
For anyone having problems with this bug right now, all I had to do was edit the permissions on the view to let "view station schedule content" view it.
Richard
Comments
Comment #1
tim.plunkettcheck out the patch, rolled against head
Comment #2
drewish commentedthanks guys. committed to HEAD. i'm going to see if there are any other quick commits then roll a new release since this is a pretty annoying bug.