From f3d2b6aeee3acd25f1418e23f326a5962384621a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20Gro=C3=9Fe?= <grosse@cosmocode.de>
Date: Wed, 7 Mar 2018 11:40:59 +0100
Subject: [PATCH] fix: use exit instead of return in the global scope

---
 lib/exe/manifest.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/exe/manifest.php b/lib/exe/manifest.php
index d11bb5310..e9a35289c 100644
--- a/lib/exe/manifest.php
+++ b/lib/exe/manifest.php
@@ -7,7 +7,7 @@ require_once(DOKU_INC . 'inc/init.php');
 
 if (!actionOK('manifest')) {
     http_status(404, 'Manifest has been disabled in DokuWiki configuration.');
-    return;
+    exit();
 }
 
 $manifest = new \dokuwiki\Manifest();
-- 
GitLab