diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-12 06:23:29 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-12 06:23:29 +0000 |
commit | f334620be52804b85081a8b3f33a3d02155f89ee (patch) | |
tree | 6adbc221d8275b8b8c104bbd250baa22b0c15db7 /modules/node/node.module | |
parent | fd1a814f3f506adfcdd2aaa6a42aba3b0f84cbfc (diff) | |
download | brdo-f334620be52804b85081a8b3f33a3d02155f89ee.tar.gz brdo-f334620be52804b85081a8b3f33a3d02155f89ee.tar.bz2 |
#681723 by Bojhan: Standardize on 'Add new content' for content creation page.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index d4f77f14b..7a38f88da 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -2299,7 +2299,7 @@ function node_page_default() { $default_links = array(); if (_node_add_access()) { - $default_links[] = l(t('Create content'), 'node/add'); + $default_links[] = l(t('Add new content'), 'node/add'); } if (user_access('administer site configuration')) { $default_links[] = l(t('Change the default front page'), 'admin/config/system/site-information'); |