When I install Views I get a red warning:
warning: Invalid argument supplied for foreach() in /var/www/html/modules/views/views.module on line 635.

and when I go to administer->views I get WSOD

Comments

merlinofchaos’s picture

Hmm. This warning indicates that you have some invalid view that is somehow sneaking into the system.

At line 635, it might be helpful to add the following debug code:

  if (!isset($view->display)) {
    drupal_set_message("Bad view is named " . $view->name . " with vid " . $view->vid);
  }

That will tell you what view(s) are broken, and then we can try to figure out how to deal with them.

merlinofchaos’s picture

Status: Active » Postponed (maintainer needs more info)
greenskunk’s picture

Same error message upon a fresh install and the system hasn't even used the module.

hrpo’s picture

I reinstalled it and works fine now.

merlinofchaos’s picture

Status: Postponed (maintainer needs more info) » Fixed

Thanks, hrpo.

Anonymous’s picture

Status: Fixed » Closed (fixed)

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