Current oav website

This commit is contained in:
Charlie Root
2023-03-20 12:18:38 +01:00
commit a096ce07cf
3270 changed files with 261778 additions and 0 deletions

18
dotclear._no/index.php Normal file
View File

@ -0,0 +1,18 @@
<?php
/**
* @package Dotclear
*
* @copyright Olivier Meunier & Association Dotclear
* @copyright GPL-2.0-only
*/
if (isset($_SERVER['DC_BLOG_ID'])) {
define('DC_BLOG_ID', $_SERVER['DC_BLOG_ID']);
} elseif (isset($_SERVER['REDIRECT_DC_BLOG_ID'])) {
define('DC_BLOG_ID', $_SERVER['REDIRECT_DC_BLOG_ID']);
} else {
# Define your blog here
define('DC_BLOG_ID', 'default');
}
require dirname(__FILE__) . '/inc/public/prepend.php';