From 5a646024db388f0709abd488e2780eb5095153e0 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes <kjartan@2.no-reply.drupal.org> Date: Sun, 9 Mar 2003 17:21:22 +0000 Subject: [PATCH] - Ahem , trailing spaces. --- modules/node.module | 12 ++++++------ modules/node/node.module | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/modules/node.module b/modules/node.module index d8c3743b0f43..97519ade4593 100644 --- a/modules/node.module +++ b/modules/node.module @@ -528,7 +528,7 @@ function node_admin_nodes() { function node_admin_settings($edit) { global $op; - + if ($op == t("Save configuration")) { /* ** Save the configuration options: @@ -562,14 +562,14 @@ function node_admin_settings($edit) { $rows[] = array_merge(array(module_invoke($name, "node", "name")), $cols); } } - + $output .= table($header, $rows); /* This is an idea for the future. foreach (module_list() as $name) { if (module_hook($name, "node")) { $node->type = $name; - + // Create table() data: $header = array_keys(node_invoke_all($node, "nodeapi", "settings")); $cols = array(); @@ -586,7 +586,7 @@ function node_admin_settings($edit) { $output .= form_submit(t("Save configuration")); $output .= form_submit(t("Reset to defaults")); - + print form($output); } @@ -840,7 +840,7 @@ function node_validate($node, &$error) { if (!$node->date) { $node->date = date("M j, Y g:i a", $node->created); } - + if (!is_numeric($node->status)) { $node->status = 1; } @@ -923,7 +923,7 @@ function node_form($edit, $error = NULL) { if (function_exists($function)) { $form .= $function($edit, $help, $error, $param); } - + // Append extra node form: $form .= implode("", node_invoke_all($edit, "nodeapi", "form post", $error)); diff --git a/modules/node/node.module b/modules/node/node.module index d8c3743b0f43..97519ade4593 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -528,7 +528,7 @@ function node_admin_nodes() { function node_admin_settings($edit) { global $op; - + if ($op == t("Save configuration")) { /* ** Save the configuration options: @@ -562,14 +562,14 @@ function node_admin_settings($edit) { $rows[] = array_merge(array(module_invoke($name, "node", "name")), $cols); } } - + $output .= table($header, $rows); /* This is an idea for the future. foreach (module_list() as $name) { if (module_hook($name, "node")) { $node->type = $name; - + // Create table() data: $header = array_keys(node_invoke_all($node, "nodeapi", "settings")); $cols = array(); @@ -586,7 +586,7 @@ function node_admin_settings($edit) { $output .= form_submit(t("Save configuration")); $output .= form_submit(t("Reset to defaults")); - + print form($output); } @@ -840,7 +840,7 @@ function node_validate($node, &$error) { if (!$node->date) { $node->date = date("M j, Y g:i a", $node->created); } - + if (!is_numeric($node->status)) { $node->status = 1; } @@ -923,7 +923,7 @@ function node_form($edit, $error = NULL) { if (function_exists($function)) { $form .= $function($edit, $help, $error, $param); } - + // Append extra node form: $form .= implode("", node_invoke_all($edit, "nodeapi", "form post", $error)); -- GitLab