summaryrefslogtreecommitdiff
path: root/modules/system.module
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2001-07-17 08:48:02 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2001-07-17 08:48:02 +0000
commited6cbd49810d7482562a4df68261252820a9f269 (patch)
tree77beb809909ced51d3e96c4272e89673fe39fca1 /modules/system.module
parent67388cad9b5cfa5f7a65a1206525c752c16564a4 (diff)
downloadbrdo-ed6cbd49810d7482562a4df68261252820a9f269.tar.gz
brdo-ed6cbd49810d7482562a4df68261252820a9f269.tar.bz2
- minor update to system.module. Each module config now has a <A NAME>
tag.
Diffstat (limited to 'modules/system.module')
-rw-r--r--modules/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system.module b/modules/system.module
index 23ef35684..1bbf527eb 100644
--- a/modules/system.module
+++ b/modules/system.module
@@ -73,7 +73,7 @@ function system_view_options() {
foreach (module_list() as $name) {
if (module_hook($name, "conf_options")) {
- $output .= "<h3>". ucfirst($name) ." settings</h3>". module_invoke($name, "conf_options") ."<hr />\n";
+ $output .= "<h3><a name=\"$name\">". ucfirst($name) ." settings</a></h3>". module_invoke($name, "conf_options") ."<hr />\n";
}
}
return $output;