<?php
/**
 * Forwarder to doku.php
 *
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
 * @author     Andreas Gohr <andi@splitbrain.org>
 */

/*
 * Pour personnaliser l'intranet, on forke/exec si l'admin local a fait une page web
 * specifique abuledu
 */

if (file_exists("site.php")) {
  require("site.php");
  exit();
}
else if (file_exists("site.html")) {
  require("site.html");
  exit(); 
}

header("Location: doku.php");
?>
