Index: delegator.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/ctools/delegator/delegator.install,v retrieving revision 1.15 diff -u -p -r1.15 delegator.install --- delegator.install 6 May 2009 00:48:52 -0000 1.15 +++ delegator.install 29 May 2009 04:03:13 -0000 @@ -144,6 +144,7 @@ function delegator_schema_1() { 'description' => 'Access configuration for this path.', 'not null' => TRUE, 'serialize' => TRUE, + 'object default' => array(), ), 'multiple' => array( 'type' => 'int', @@ -157,6 +158,7 @@ function delegator_schema_1() { 'description' => 'Serialized configuration of Drupal menu visibility settings for this item.', 'not null' => TRUE, 'serialize' => TRUE, + 'object default' => array(), ), 'arguments' => array( 'type' => 'text', @@ -245,3 +247,7 @@ function delegator_update_6102() { $ret[] = update_sql("UPDATE {system} SET weight = 99 WHERE name = 'delegator'"); return $ret; } + +function delegator_update_6103() { + return array(); +}