Closed (fixed)
Project:
Custom Breadcrumbs
Version:
6.x-1.3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
16 Sep 2008 at 15:05 UTC
Updated:
31 May 2009 at 01:40 UTC
Line 103 in custom_breadcrumbs.install has to be changed so that the upgrade works in Postgres:
db_add_column($ret, 'custom_breadcrumb', 'visibility_php', 'text', array('default' => ''));
has to be changed to
db_add_column($ret, 'custom_breadcrumb', 'visibility_php', 'text', array('default' => "''"));
--> otherwise you get an SQL error:
ALTER TABLE drupal_custom_breadcrumb ALTER visibility_php SET default
does not work because '' is missing at the end.
Thanks,
Reinhard
Comments
Comment #1
MGN commentedThanks. Committed to 6.x-1.x-dev and 6.x-2.x-dev.