These sorts are necessary on the header arrays, otherwise the relative priority of certain headers is not respected.

This commit is contained in:
jgen 2014-04-23 23:28:05 -04:00
parent b775c007cd
commit 2dc6e054c8
2 changed files with 2 additions and 0 deletions

View file

@ -20,6 +20,7 @@ class Layout {
$contact_link = $config->get_string('contact_link');
$header_html = "";
ksort($page->html_headers);
foreach($page->html_headers as $line) {
$header_html .= "\t\t$line\n";
}

View file

@ -16,6 +16,7 @@ class Layout {
$contact_link = $config->get_string('contact_link');
$header_html = "";
ksort($page->html_headers);
foreach($page->html_headers as $line) {
$header_html .= "\t\t$line\n";
}