Current oav website
This commit is contained in:
18
dotclear._no/index.php
Normal file
18
dotclear._no/index.php
Normal 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';
|
||||
Reference in New Issue
Block a user