fixed error in hashbang resolver

This commit is contained in:
Ulf Gebhardt 2019-03-31 17:07:14 +02:00
parent 65e1629579
commit 7e243d9afa
No known key found for this signature in database
GPG Key ID: 44C888923CC8E7F3

View File

@ -96,7 +96,7 @@ abstract class api_default extends api_system implements api_default_interface {
}
}
if(!$found){
$node = $head->appendChild($html->createElement('meta'));
$node = $html->getElementsByTagName('head')[0]->appendChild($html->createElement('meta'));
$node->setAttribute($key, $metavalue);}
}
}