From 22c889e7c05b1c2dd98ad5e6b3547234a3f6596f Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 7 Oct 2003 18:16:41 +0000 Subject: - Help system improvements: eliminated the _system hook. Patch by Michael. - Bloggerapi module fixes. Patch by Kjartan. - Coding style fixes. Patch by Michael. --- modules/page.module | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'modules/page.module') diff --git a/modules/page.module b/modules/page.module index 5826402ac..d7bdc3a3b 100644 --- a/modules/page.module +++ b/modules/page.module @@ -11,7 +11,7 @@ function page_help($section = "admin/page/help") { $output .= "

Site pages, unlike many other forms of Drupal content, may be made of PHP code in addition to HTML and text. All Drupal objects and functions are available to a site administrator.

"; $output = t($output); break; - case 'admin/system/modules': + case 'admin/system/modules#description': $output = t("Enables the creation of a static pages that can be added to the navigation system."); break; @@ -20,14 +20,6 @@ function page_help($section = "admin/page/help") { return $output; } -function page_system($field) { - $output = ""; - - if ($field == "description") {$output = page_help("admin/system/modules"); }; - - return $output; -} - function page_perm() { return array("maintain static pages"); } -- cgit v1.2.3