summaryrefslogtreecommitdiff
path: root/modules/node
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-07-05 08:48:58 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-07-05 08:48:58 +0000
commit806d0a3dee25333558bb0a888c2a51c33f0723cd (patch)
tree4171b59abeb1607948721d86f5c76405c666491b /modules/node
parentb9c40a52370c2e7d8b3db078f869e02881435da9 (diff)
downloadbrdo-806d0a3dee25333558bb0a888c2a51c33f0723cd.tar.gz
brdo-806d0a3dee25333558bb0a888c2a51c33f0723cd.tar.bz2
#156910 by asimmonds: fix code indentation problems introduced with new code in this development cycle; only whitespace changes
Diffstat (limited to 'modules/node')
-rw-r--r--modules/node/node.module12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index 339e1dc2f..81d9722e4 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -2468,13 +2468,13 @@ function node_form_submit($form, &$form_state) {
* Menu callback -- ask for confirmation of node deletion
*/
function node_delete_confirm(&$form_state, $node) {
- $form['nid'] = array('#type' => 'value', '#value' => $node->nid);
+ $form['nid'] = array('#type' => 'value', '#value' => $node->nid);
- return confirm_form($form,
- t('Are you sure you want to delete %title?', array('%title' => $node->title)),
- isset($_GET['destination']) ? $_GET['destination'] : 'node/'. $node->nid,
- t('This action cannot be undone.'),
- t('Delete'), t('Cancel'));
+ return confirm_form($form,
+ t('Are you sure you want to delete %title?', array('%title' => $node->title)),
+ isset($_GET['destination']) ? $_GET['destination'] : 'node/'. $node->nid,
+ t('This action cannot be undone.'),
+ t('Delete'), t('Cancel'));
}
/**