aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/lib/exe/manifest.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/exe/manifest.php')
-rw-r--r--lib/exe/manifest.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/exe/manifest.php b/lib/exe/manifest.php
index 687c1937c..b3ccfb7e8 100644
--- a/lib/exe/manifest.php
+++ b/lib/exe/manifest.php
@@ -1,9 +1,11 @@
<?php
+use dokuwiki\Manifest;
+
if (!defined('DOKU_INC')) {
define('DOKU_INC', __DIR__ . '/../../');
}
-if(!defined('NOSESSION')) define('NOSESSION',true); // no session or auth required here
+if (!defined('NOSESSION')) define('NOSESSION', true); // no session or auth required here
require_once(DOKU_INC . 'inc/init.php');
if (!actionOK('manifest')) {
@@ -11,5 +13,5 @@ if (!actionOK('manifest')) {
exit();
}
-$manifest = new \dokuwiki\Manifest();
+$manifest = new Manifest();
$manifest->sendManifest();