theme_more_link($variables)Returns code that emits the 'more' link used on blocks.
$variables An associative array containing:
includes/theme.inc, line 1944
<?php
function theme_more_link($variables) {
return '<div class="more-link">' . t('<a href="@link" title="@title">More</a>', array('@link' => check_url($variables['url']), '@title' => $variables['title'])) . '</div>';
}
?>