diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-02-15 19:15:21 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-02-15 19:15:21 +0000 |
commit | b8619c29b7757fd0992379a728b207b2f944371d (patch) | |
tree | e7e28da783d9fbb17bb015f4981cfde0ebfc6e35 /modules | |
parent | e27ed9eebb2b79ae7eec3cc2044950ada07db580 (diff) | |
download | brdo-b8619c29b7757fd0992379a728b207b2f944371d.tar.gz brdo-b8619c29b7757fd0992379a728b207b2f944371d.tar.bz2 |
#706776 by Jacine: Fixed Broken link to blocks page in Dashboard.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/dashboard/dashboard.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dashboard/dashboard.module b/modules/dashboard/dashboard.module index 44629f2a9..2ca73a629 100644 --- a/modules/dashboard/dashboard.module +++ b/modules/dashboard/dashboard.module @@ -213,7 +213,7 @@ function dashboard_admin($launch_customize = FALSE) { ); $build = array( '#theme' => 'dashboard_admin', - '#message' => t('To customize the dashboard page, move blocks to the dashboard regions on the <a href="@blocks">Blocks administration page</a>, or enable JavaScript on this page to use the drag-and-drop interface.', array('!blocks' => url('admin/structure/block'))), + '#message' => t('To customize the dashboard page, move blocks to the dashboard regions on the <a href="@blocks">Blocks administration page</a>, or enable JavaScript on this page to use the drag-and-drop interface.', array('@blocks' => url('admin/structure/block'))), '#access' => user_access('administer blocks'), '#attached' => array( 'js' => array( |