Posted by AxelBernhardt on March 8, 2009 at 5:14pm
2 followers
Jump to:
| Project: | Content Type Inheritance Module |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
Using this module causes a conflict with the views module.
In the views module there only remains a blank screen / whitescreen.
I have a longer list of mods in my installation. but it seems to me, deactivation inherit solves the problem.
Here is my xdebug reporting:
( ! ) Fatal error: Call to undefined function _inherit_get_data() in /var/drupal/6.x/modules-beta/inherit/inherit.module on line 210
Call Stack
# Time Memory Function Location
1 0.0000 55972 {main}( ) ../index.php:0
2 0.2539 11984136 menu_execute_active_handler( ) ../index.php:18
3 0.2557 11988488 call_user_func_array ( ) ../menu.inc:348
4 0.2557 11988544 views_ui_list_views( ) ../menu.inc:0
5 0.2558 11988544 theme( ) ../admin.inc:16
6 0.2621 12781552 call_user_func_array ( ) ../theme.inc:658
7 0.2621 12781552 template_preprocess_views_ui_list_views( ) ../theme.inc:0
8 0.2655 13118916 drupal_build_form( ) ../admin.inc:77
9 0.2657 13119648 _drupal_build_form( ) ../views.module:1037
10 0.2658 13120452 call_user_func_array ( ) ../form.inc:48
11 0.2658 13120768 drupal_retrieve_form( ) ../form.inc:0
12 0.2658 13123016 call_user_func_array ( ) ../form.inc:366
13 0.2658 13123216 views_ui_list_views_form( ) ../form.inc:0
14 0.2661 13125912 views_fetch_base_tables( ) ../admin.inc:238
15 0.2662 13126152 views_fetch_data( ) ../admin.inc:2829
16 0.2662 13126400 _views_fetch_data( ) ../views.module:657
17 0.3016 13892336 inherit_views_data_alter( ) ../cache.inc:43Please give a short feedback, if you can recreate this problem.
Comments
#1
As described here http://drupal.org/node/373902
"Used _inherit_get_data() instead of _inherit_get()"
now I changed inherit.module in line210 from
$family_tree = _inherit_get_data();to
$family_tree = _inherit_get();seems to work now.
#2
This year old bug seems not yet corrected. the last dev still fails, the patch does it.