]> git.mxchange.org Git - friendica.git/blobdiff - mod/manifest.php
Added test case for Router->getModuleClass
[friendica.git] / mod / manifest.php
index 98325c336669aab1b1f4ecef7a08965cfb7e6f12..bdb5298ef3a87e81361e7a9e9ee709e9387589a7 100644 (file)
@@ -7,7 +7,7 @@ use Friendica\Core\Renderer;
 
 function manifest_content(App $a) {
 
-       $tpl = get_markup_template('manifest.tpl');
+       $tpl = Renderer::getMarkupTemplate('manifest.tpl');
 
        header('Content-type: application/manifest+json');
 
@@ -24,5 +24,5 @@ function manifest_content(App $a) {
 
        echo $o;
 
-       killme();
+       exit();
 }