diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-07 18:16:41 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-07 18:16:41 +0000 |
commit | 22c889e7c05b1c2dd98ad5e6b3547234a3f6596f (patch) | |
tree | 8b63c79053762af3284384a7e8c54a2d3e9b0d45 /modules/page.module | |
parent | fbc674f14301fd92f97f2506a72c22b7d51c1c43 (diff) | |
download | brdo-22c889e7c05b1c2dd98ad5e6b3547234a3f6596f.tar.gz brdo-22c889e7c05b1c2dd98ad5e6b3547234a3f6596f.tar.bz2 |
- Help system improvements: eliminated the _system hook. Patch by Michael.
- Bloggerapi module fixes. Patch by Kjartan.
- Coding style fixes. Patch by Michael.
Diffstat (limited to 'modules/page.module')
-rw-r--r-- | modules/page.module | 10 |
1 files changed, 1 insertions, 9 deletions
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 .= "<p>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.</p>"; $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"); } |