Index: modules/block/block.install =================================================================== RCS file: /cvs/drupal/drupal/modules/block/block.install,v retrieving revision 1.33 diff -u -p -r1.33 block.install --- modules/block/block.install 29 Sep 2009 15:13:54 -0000 1.33 +++ modules/block/block.install 15 Oct 2009 23:15:40 -0000 @@ -85,6 +85,7 @@ function block_schema() { 'not null' => TRUE, 'default' => '', 'description' => 'Custom title for the block. (Empty string will use block default title, will remove the title, text will cause block to use specified title.)', + 'translatable' => TRUE, ), 'cache' => array( 'type' => 'int', Index: modules/block/block.module =================================================================== RCS file: /cvs/drupal/drupal/modules/block/block.module,v retrieving revision 1.389 diff -u -p -r1.389 block.module --- modules/block/block.module 14 Oct 2009 02:13:14 -0000 1.389 +++ modules/block/block.module 15 Oct 2009 23:15:40 -0000 @@ -601,6 +601,7 @@ function _block_load_blocks() { ->orderBy('b.weight') ->orderBy('b.module') ->addTag('block_load') + ->addTag('translatable') ->execute(); $block_info = $result->fetchAllAssoc('bid');