OG's default views disappear after upgrading to GR 5.x-1.3. From #278740: og default views gone after upgrade - conflict with globalredirect?:
What's happening is this:
- views calls module_invoke_all('views_default_views') indirectly from its hook_menu
- OG includes its views support in hook_init
- GR calls menu_get_active_item() directly from its hook_init, which causes views to look for the hook before OG has a chance to implement it.
One possible fix is to increase the weight of GR in the system table.
Comments
Comment #1
john morahan commentedI just checked and nodequeue does the same thing with including its views support in hook_init - so this is almost certainly the same problem as #279530: Global Redirect breaks NodeQueue.