From 451821abe7e1f68d53b1818c111832efa8b76f8d Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 16 Aug 2004 18:31:44 +0000 Subject: - Patch #10110 by JonBob: code improvement: looks like we have an artifact from before clean URLs in node.module. This patch removes the global variable $mod, which is no longer set and not necessary here anyway. --- modules/node.module | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'modules/node.module') diff --git a/modules/node.module b/modules/node.module index b68c01800..0e9610d7c 100644 --- a/modules/node.module +++ b/modules/node.module @@ -7,8 +7,6 @@ define('NODE_NEW_LIMIT', time() - 30 * 24 * 60 * 60); * Implementation of hook_help(). */ function node_help($section) { - global $mod; - switch ($section) { case 'admin/help#node': $output = t(" @@ -33,12 +31,11 @@ function node_help($section) {
Published
When using Drupal's moderation system a node remains unpublished -- unavailable to non-moderators -- until it is marked Published.

Now that you know what is in a node, here are some of the types of nodes available.

", array("%teaser" => url("admin/node/configure/settings"))); - if ($mod == 'admin') { - foreach (node_list() as $type) { - $output .= '

'. t('Node type: %module', array('%module' => node_invoke($type, 'node_name'))). '

'; - $output .= implode("\n", module_invoke_all('help', 'node/add#'. $type)); - } + foreach (node_list() as $type) { + $output .= '

'. t('Node type: %module', array('%module' => node_invoke($type, 'node_name'))). '

'; + $output .= implode("\n", module_invoke_all('help', 'node/add#'. $type)); } + return $output; case 'admin/modules#description': -- cgit v1.2.3