summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-02-17 03:37:12 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-02-17 03:37:12 +0000
commitf177c12db77a1728273317f350c8e6723b53459c (patch)
treee090c165af6ae4e457c7473f178f86a32a8a76c8 /includes
parentba468be638738cac5bb828f8f1fe50efbdd78eae (diff)
downloadbrdo-f177c12db77a1728273317f350c8e6723b53459c.tar.gz
brdo-f177c12db77a1728273317f350c8e6723b53459c.tar.bz2
#337947 follow-up by Jacine: Capitalization and markup fixes for Dashboard.
Diffstat (limited to 'includes')
-rw-r--r--includes/theme.inc2
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>';
}
/**