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

View file

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