summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.admin.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-03 00:44:53 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-03 00:44:53 +0000
commitb033a61208b59d4e530b54294477955177ca6ed2 (patch)
treef2cf26746b751703b97eca84ed24fa04001696f4 /modules/taxonomy/taxonomy.admin.inc
parent30a6c37c867a49ba0d1eb87a965f963f106ba558 (diff)
downloadbrdo-b033a61208b59d4e530b54294477955177ca6ed2.tar.gz
brdo-b033a61208b59d4e530b54294477955177ca6ed2.tar.bz2
#648410 follow-up by Dave Reid: Add link to create new from all empty table texts.
Diffstat (limited to 'modules/taxonomy/taxonomy.admin.inc')
-rw-r--r--modules/taxonomy/taxonomy.admin.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc
index 0ffead389..cdb02bacc 100644
--- a/modules/taxonomy/taxonomy.admin.inc
+++ b/modules/taxonomy/taxonomy.admin.inc
@@ -85,7 +85,7 @@ function theme_taxonomy_overview_vocabularies($variables) {
drupal_add_tabledrag('taxonomy', 'order', 'sibling', 'vocabulary-weight');
}
$header[] = array('data' => t('Operations'), 'colspan' => '3');
- return theme('table', array('header' => $header, 'rows' => $rows, 'empty' => t('No vocabularies available.'),'attributes' => array('id' => 'taxonomy'))) . drupal_render_children($form);
+ return theme('table', array('header' => $header, 'rows' => $rows, 'empty' => t('No vocabularies available. <a href="@link">Add vocabulary</a>.', array('@link' => url('admin/structure/taxonomy/add'))), 'attributes' => array('id' => 'taxonomy'))) . drupal_render_children($form);
}
/**