include feedback

This commit is contained in:
Philipp Holzer 2019-05-05 10:09:08 +02:00
parent a1f332aaa5
commit 1a79a741f0
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5
1 changed files with 2 additions and 2 deletions

View File

@ -13,9 +13,9 @@ class ReallySimpleDiscovery extends BaseModule
{
public static function rawContent()
{
header ("Content-Type: text/xml");
header ('Content-Type: text/xml');
$tpl = Renderer::getMarkupTemplate('rsd.tpl');
echo Renderer::replaceMacros($tpl, []);
echo Renderer::replaceMacros($tpl);
exit();
}
}