Index: modules/system/system.install =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.install,v retrieving revision 1.176 diff -u -r1.176 system.install --- modules/system/system.install 13 Nov 2007 14:04:08 -0000 1.176 +++ modules/system/system.install 14 Nov 2007 01:04:06 -0000 @@ -4525,6 +4525,15 @@ } /** + * Create consistent empty region for disabled blocks. + */ +function system_update_6037() { + $ret = array(); + $ret[] = update_sql("UPDATE {blocks} SET region = '' WHERE status = 0"); + return $ret; +} + +/** * @} End of "defgroup updates-5.x-to-6.x" * The next series of updates should start at 7000. */ Index: modules/block/block.install =================================================================== RCS file: /cvs/drupal/drupal/modules/block/block.install,v retrieving revision 1.6 diff -u -r1.6 block.install --- modules/block/block.install 6 Nov 2007 11:40:15 -0000 1.6 +++ modules/block/block.install 14 Nov 2007 01:04:04 -0000 @@ -52,7 +52,7 @@ 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, - 'default' => 'left', + 'default' => '', 'description' => t('Theme region within which the block is set.'), ), 'custom' => array(