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

MGN’s picture

Good catch! This fix will be incorporated in the next commit.

MGN’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.