summaryrefslogtreecommitdiff
path: root/platform/www/lib/exe/manifest.php
blob: e9a35289c0224d77021f7a54185a3ece3d4c0c7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

if (!defined('DOKU_INC')) {
    define('DOKU_INC', __DIR__ . '/../../');
}
require_once(DOKU_INC . 'inc/init.php');

if (!actionOK('manifest')) {
    http_status(404, 'Manifest has been disabled in DokuWiki configuration.');
    exit();
}

$manifest = new \dokuwiki\Manifest();
$manifest->sendManifest();