summaryrefslogtreecommitdiff
path: root/modules/node/node.admin.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-07-30 19:24:21 +0000
committerDries Buytaert <dries@buytaert.net>2009-07-30 19:24:21 +0000
commit926606eeca106fb2e0eff20f3b1bff205924fd36 (patch)
treec581d939750d30dc7db6242442e190ee168be127 /modules/node/node.admin.inc
parent8c8521081cbb8ffc80bb80c691dab3db270f5e9b (diff)
downloadbrdo-926606eeca106fb2e0eff20f3b1bff205924fd36.tar.gz
brdo-926606eeca106fb2e0eff20f3b1bff205924fd36.tar.bz2
- Patch #535564 by Gábor Hojtsy: the D7UX mockups call for a top level Content item, which would immediatey lead to the "Find content" screen. The current Drupal 7 code is almost there, but still has an RSS settings item blocking the implementation of this by default and aggregator and book also add subitems.
Diffstat (limited to 'modules/node/node.admin.inc')
-rw-r--r--modules/node/node.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/node.admin.inc b/modules/node/node.admin.inc
index dc63f5c0a..889a405ed 100644
--- a/modules/node/node.admin.inc
+++ b/modules/node/node.admin.inc
@@ -578,7 +578,7 @@ function node_multiple_delete_confirm(&$form_state, $nodes) {
'Are you sure you want to delete these items?');
return confirm_form($form,
$confirm_question,
- 'admin/content/node', t('This action cannot be undone.'),
+ 'admin/content', t('This action cannot be undone.'),
t('Delete'), t('Cancel'));
}
@@ -589,7 +589,7 @@ function node_multiple_delete_confirm_submit($form, &$form_state) {
watchdog('content', 'Deleted @count posts.', array('@count' => $count));
drupal_set_message(t('Deleted @count posts.', array('@count' => $count)));
}
- $form_state['redirect'] = 'admin/content/node';
+ $form_state['redirect'] = 'admin/content';
return;
}