Closed (fixed)
Project:
Taxonomy Menu
Version:
6.x-3.0-unstable4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
31 Dec 2009 at 03:15 UTC
Updated:
14 Jan 2010 at 15:40 UTC
I am getting the following error when visiting /admin/build/taxonomy_menu/group/add
Fatal error: Call to undefined function taxonomy_menu_get_paths() in \Sites\dev\sites\all\modules\taxonomy_menu\taxonomy_menu.admin.inc on line 165
Comments
Comment #1
arlinsandbulte commentedFresh install of:
Drupal 6.15
Taxonomy Manager 6.x-2.1
Taxonomy Menu 6.x-3.0-unstable4
Administration menu 6.x-1.5
Poormanscron 6.x-2.1
Comment #2
klonossame here!
Comment #3
indytechcook commentedSorry. I committed the wrong version of taxonomy_menu.module. I have about 14 versions of the module. I have deleted all but 2 now :) 2.0 and 3.0. I'll commit the fix soon but you can fix it now by changing _taxonomy_menu_get_paths() to taxonomy_menu_get_paths() around line 151 of taxonomy_menu.module.
Comment #4
arlinsandbulte commented[edit: ah, indy, you beat me to it!]
I think I found the problem in taxonomy_menu.module line 151 there is an extra underscore in the function name.
function _taxonomy_menu_get_paths() {
should be changed to
function taxonomy_menu_get_paths() {
Comment #5
arlinsandbulte commentedConfirmed that #3 #4 fix this bug.
Comment #6
indytechcook commentedfixed: http://drupal.org/cvs?commit=308632