Closed (fixed)
Project:
Faceted Search
Version:
6.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
15 Feb 2009 at 02:48 UTC
Updated:
17 Mar 2009 at 00:30 UTC
Small patch to remove notices in two files.
Index: faceted_search_ui.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/faceted_search/faceted_search_ui.module,v
retrieving revision 1.84
diff -r1.84 faceted_search_ui.module
81a82
> $blocks = '';
Index: faceted_search_views.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/faceted_search/faceted_search_views.module,v
retrieving revision 1.16
diff -r1.16 faceted_search_views.module
19c19
< if ($view->base_table == 'node' && !$view->disabled && $view->display['default']->display_options['use_pager']) {
---
> if ($view->base_table == 'node' && isset($view->disabled) && !$view->disabled && $view->display['default']->display_options['use_pager']) {
Thanks,
jrp
Comments
Comment #1
david lesieur commentedThanks for the patch. Both notices are now fixed, but slightly differently than suggested above.
http://drupal.org/cvs?commit=178246
http://drupal.org/cvs?commit=178244