- changed the $function code to use module_invoke() as its a lot cleaner and
more in tune with the rest of Drupal.4.0.x
parent
8ae1611c40
commit
0db3df1bfa
|
@ -6,8 +6,7 @@ include_once "includes/common.inc";
|
||||||
page_header();
|
page_header();
|
||||||
|
|
||||||
eval(variable_get("site_frontpage_extra", "") .";");
|
eval(variable_get("site_frontpage_extra", "") .";");
|
||||||
$function = variable_get("site_frontpage", "node") ."_page";
|
module_invoke(variable_get("site_frontpage", "node"), "page");
|
||||||
$function();
|
|
||||||
|
|
||||||
page_footer();
|
page_footer();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue