Skip to content
Snippets Groups Projects
Commit 0ce52bad authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Add hidden options MAIN_HTML_HEADER and MAIN_HTML_FOOTER

parent ba610d29
No related branches found
No related tags found
No related merge requests found
......@@ -816,6 +816,8 @@ function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs
print '""];';
print '</script>'."\n";
if (! empty($conf->global->MAIN_HTML_HEADER)) print $conf->global->MAIN_HTML_HEADER."<br>\n";
print "</head>\n\n";
}
}
......@@ -1210,6 +1212,8 @@ function llxFooter($foot='')
print "\n";
if ($foot) print '<!-- '.$foot.' -->'."\n";
if (! empty($conf->global->MAIN_HTML_FOOTER)) print $conf->global->MAIN_HTML_FOOTER."<br>\n";
print "</body>\n";
print "</html>\n";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment