From 08e7c8b3a708685ca9c5a9d780408a87c0ff9444 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 10 Feb 2005 19:30:08 +0000 Subject: - Patch #16246 by Moshe: "Here is a patch for node.module since thta hunk failed last time. Note that I've removed the 'delete' link since it doesn't work and is mostly obsolete with the 'mass delete' feature. I've also added smart destination andling to the 'url alias delete' feature." --- modules/node.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/node.module') diff --git a/modules/node.module b/modules/node.module index b23d071a5..a17b5eb3a 100644 --- a/modules/node.module +++ b/modules/node.module @@ -924,14 +924,14 @@ function node_admin_nodes() { // Overview table: $header = array(NULL, t('Title'), t('Type'), t('Author'), t('Status'), array('data' => t('Operations'), 'colspan' => '2')); + $destination = drupal_get_destination(); while ($node = db_fetch_object($result)) { $rows[] = array(form_checkbox(NULL, 'nodes]['. $node->nid, 1, 0), l($node->title, 'node/'. $node->nid) .' '. theme('mark', node_mark($node->nid, $node->changed)), node_invoke($node, 'node_name'), format_name($node), ($node->status ? t('published') : t('not published')), - l(t('edit'), 'node/'. $node->nid .'/edit'), - l(t('delete'), 'admin/node/delete/'. $node->nid)); + l(t('edit'), 'node/'. $node->nid .'/edit', array(), $destination)); } if ($pager = theme('pager', NULL, 50, 0)) { -- cgit v1.2.3