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

CommentFileSizeAuthor
#1 station_529998.patch849 bytestim.plunkett

Comments

tim.plunkett’s picture

Version: 6.x-2.0-unstable3 » 6.x-2.x-dev
Status: Active » Needs review
StatusFileSize
new849 bytes

check out the patch, rolled against head

drewish’s picture

Status: Needs review » Fixed

thanks 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.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.