diff options
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index d8bec3403..3461c4a7f 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -1995,7 +1995,7 @@ function theme_html_tag($variables) { * - title: A descriptive verb for the link, like 'Read more' */ 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>'; + return '<div class="more-link">' . t('<a href="@link" title="@title">More</a>', array('@link' => check_url($variables['url']), '@title' => $variables['title'])) . '</div>'; } /** |