diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-28 07:10:59 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-28 07:10:59 +0000 |
commit | f29dafba553b7b1b77ef8cc16e6ee73209d903fa (patch) | |
tree | 2ea4d12636f2350a54606b6a044012181a498721 /modules/node | |
parent | fca98f9ac939351cc1cbfdb4141bfe8b563d283f (diff) | |
download | brdo-f29dafba553b7b1b77ef8cc16e6ee73209d903fa.tar.gz brdo-f29dafba553b7b1b77ef8cc16e6ee73209d903fa.tar.bz2 |
#689716 by yoroy: Remove 'Change the default front page' link from the welcome screen.
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/node.module | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 3b6e25081..971aeadf9 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -2399,9 +2399,6 @@ function node_page_default() { if (_node_add_access()) { $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'); - } if (!empty($default_links)) { $default_message .= theme('item_list', array('items' => $default_links)); } |