Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
0db3df1b
Commit
0db3df1b
authored
Nov 17, 2001
by
Kjartan
Browse files
- changed the $function code to use module_invoke() as its a lot cleaner and
more in tune with the rest of Drupal.
parent
8ae1611c
Changes
1
Hide whitespace changes
Inline
Side-by-side
index.php
View file @
0db3df1b
...
...
@@ -6,8 +6,7 @@
page_header
();
eval
(
variable_get
(
"site_frontpage_extra"
,
""
)
.
";"
);
$function
=
variable_get
(
"site_frontpage"
,
"node"
)
.
"_page"
;
$function
();
module_invoke
(
variable_get
(
"site_frontpage"
,
"node"
),
"page"
);
page_footer
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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