diff --git a/core/modules/node/node.module b/core/modules/node/node.module index 1702ee9..19b3922 100644 --- a/core/modules/node/node.module +++ b/core/modules/node/node.module @@ -1184,9 +1184,9 @@ function theme_node_recent_block($variables) { $output = drupal_render($table); if (user_access('access content overview')) { $more_link = array( - '#theme' => 'more_link', - '#url' => 'admin/content', - '#title' => t('Show more content'), + '#type' => 'more_link', + '#href' => 'admin/content', + '#attributes' => array('title' => t('Show more content')), ); $output .= drupal_render($more_link); }