### Eclipse Workspace Patch 1.0
#P ao.dev
Index: sites/all/modules/contrib/context/plugins/context_reaction_block.inc
===================================================================
--- sites/all/modules/contrib/context/plugins/context_reaction_block.inc	(revision 1736)
+++ sites/all/modules/contrib/context/plugins/context_reaction_block.inc	(working copy)

   /**
    * Generate the safe weight range for a block being added to a region such that
    * there are enough potential unique weights to support all blocks.
@@ -446,7 +446,7 @@
       if (module_exists('block')) {
         $theme_key = variable_get('theme_default', 'garland');
         $result = db_select('block')
-          ->fields('block', array('module','weight','delta','region', 'title'))
+          ->fields('block', array('module','weight','delta','region', 'title', 'cache'))
           ->condition('theme', $theme_key)
           ->execute();
         foreach ($result as $row) {
@@ -454,6 +454,8 @@
             $block_info["{$row->module}-{$row->delta}"]->weight = $row->weight;
             $block_info["{$row->module}-{$row->delta}"]->region = $row->region;
             $block_info["{$row->module}-{$row->delta}"]->title = $row->title;
+            //Allow database overrule cache settings cfr block cache alter
+            $block_info["{$row->module}-{$row->delta}"]->cache = $row->cache;
           }
         }
       }
