Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
ed6cbd49
Commit
ed6cbd49
authored
Jul 17, 2001
by
Kjartan Mannes
Browse files
- minor update to system.module. Each module config now has a <A NAME>
tag.
parent
67388cad
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/system.module
View file @
ed6cbd49
...
...
@@ -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
;
...
...
modules/system/system.module
View file @
ed6cbd49
...
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment