Closed (fixed)
Project:
Custom Breadcrumbs
Version:
6.x-2.x-dev
Component:
custom_breadcrumbs
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Jul 2009 at 14:03 UTC
Updated:
24 Jul 2009 at 01:00 UTC
I just ran the update from a 5.x install to 6.x and found the 6001 update does not add the set_active_menu column correctly...
The fix is to change
db_add_field($ret, 'custom_breadcrumb', 'set_active_menu', 'int', array('default' => 1, 'NOT NULL' => TRUE));
to
db_add_field($ret, 'custom_breadcrumb', 'set_active_menu', array('type' => 'int', 'default' => 1, 'not null' => TRUE));
Comments
Comment #1
MGN commentedGood catch! This fix will be incorporated in the next commit.
Comment #2
MGN commented