diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-03 00:44:53 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-03 00:44:53 +0000 |
commit | b033a61208b59d4e530b54294477955177ca6ed2 (patch) | |
tree | f2cf26746b751703b97eca84ed24fa04001696f4 /modules/node | |
parent | 30a6c37c867a49ba0d1eb87a965f963f106ba558 (diff) | |
download | brdo-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/node')
-rw-r--r-- | modules/node/content_types.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc index c10eb90c9..24f30f82b 100644 --- a/modules/node/content_types.inc +++ b/modules/node/content_types.inc @@ -48,7 +48,7 @@ function node_overview_types() { '#theme' => 'table', '#header' => $header, '#rows' => $rows, - '#empty' => t('No content types available.'), + '#empty' => t('No content types available. <a href="@link">Add content type</a>.', array('@link' => url('admin/structure/types/add'))), ); return $build; |