Fix for Zen edit_links_array as an array of arguments to pass to l()

  1.   // Display 'edit block' for custom blocks.
  2.   if ($block->module == 'block') {
  3.     $edit_link['title'] = t('edit block');
  4.     $edit_link['href'] = 'admin/build/block/configure/' . $block->module . '/' . $block->delta;
  5.     $edit_link['options'] = array(
  6.       'attributes' => array(
  7.         'title' => t('edit the content of this block'),
  8.         'class' => 'block-edit',
  9.       ),
  10.     );
  11.     $vars['edit_links_array'][$edit_link['href']] = $edit_link;
  12.   }

Submit Fix

Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Select the syntax highlighting mode to use.