OLD | NEW |
| (Empty) |
1 <?php | |
2 /** | |
3 * Anwiki is a multilingual content management system <http://www.anwiki.com> | |
4 * Copyright (C) 2007-2009 Antoine Walter <http://www.anw.fr> | |
5 * | |
6 * Anwiki is free software: you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation, version 3 of the License. | |
9 * | |
10 * Anwiki is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 * GNU General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU General Public License | |
16 * along with Anwiki. If not, see <http://www.gnu.org/licenses/>. | |
17 */ | |
18 | |
19 /** | |
20 * Override file for ./anwiki.inc.php. | |
21 * Read INSTALL-ADVANCED instructions to learn more about this file. | |
22 * | |
23 * @package Anwiki | |
24 * @version $Id: _anwiki-override-DISABLED.inc.php 120 2009-02-08 14:06:11Z anw
$ | |
25 * @copyright 2007-2009 Antoine Walter | |
26 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License 3 | |
27 */ | |
28 | |
29 /** | |
30 * Full path to this Anwiki instance. | |
31 */ | |
32 define('ANWPATH_ROOT_SETUP', '/var/www/adblockplus.org/anwiki/'); | |
33 | |
34 /** | |
35 * Full path to Anwiki shared code repository. | |
36 */ | |
37 define('ANWPATH_ROOT_SHARED', ANWPATH_ROOT_SETUP); | |
38 | |
39 /** | |
40 * Allow PHP eval() function usage? | |
41 * Uncomment this line ONLY if you know exactly what you are doing. | |
42 */ | |
43 //define('ANWIKI_PHPEVAL_ENABLED', true); | |
44 | |
45 /** | |
46 * Enable devel mode? | |
47 * Uncomment this line to enable strict PHP errors reporting. | |
48 */ | |
49 //define('ANWIKI_DEVEL', true); | |
50 | |
51 /** | |
52 * Require default file. | |
53 */ | |
54 require_once(ANWPATH_ROOT_SHARED.ANWFILE_INC); | |
55 | |
56 ?> | |
OLD | NEW |