You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
416 B

  1. <?php
  2. use dokuwiki\Manifest;
  3. if (!defined('DOKU_INC')) {
  4. define('DOKU_INC', __DIR__ . '/../../');
  5. }
  6. if (!defined('NOSESSION')) define('NOSESSION', true); // no session or auth required here
  7. require_once(DOKU_INC . 'inc/init.php');
  8. if (!actionOK('manifest')) {
  9. http_status(404, 'Manifest has been disabled in DokuWiki configuration.');
  10. exit();
  11. }
  12. $manifest = new Manifest();
  13. $manifest->sendManifest();