diff options
author | Pim van den Berg | 2011-02-07 20:33:39 +0100 |
---|---|---|
committer | Pim van den Berg | 2011-02-07 20:33:39 +0100 |
commit | 0027d95139060c3a9ec5940ab9e96a714b85be74 (patch) | |
tree | 0d297c17793151cdc8b5e1b5bbe694c84b32802c | |
parent | replace function generate_colors by rainbow_colors (diff) | |
download | apt-panopticon_cgp-0027d95139060c3a9ec5940ab9e96a714b85be74.zip apt-panopticon_cgp-0027d95139060c3a9ec5940ab9e96a714b85be74.tar.gz apt-panopticon_cgp-0027d95139060c3a9ec5940ab9e96a714b85be74.tar.bz2 apt-panopticon_cgp-0027d95139060c3a9ec5940ab9e96a714b85be74.tar.xz |
include local configuration file once
When config.php was copied to config.inc.php it would result in a infinite
include loop.
-rw-r--r-- | conf/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/config.php b/conf/config.php index fccd250..781172d 100644 --- a/conf/config.php +++ b/conf/config.php | |||
@@ -43,6 +43,6 @@ $CONFIG['socket'] = NULL; | |||
43 | 43 | ||
44 | # load local configuration | 44 | # load local configuration |
45 | if (file_exists(dirname(__FILE__).'/config.local.php')) | 45 | if (file_exists(dirname(__FILE__).'/config.local.php')) |
46 | include 'config.local.php'; | 46 | include_once 'config.local.php'; |
47 | 47 | ||
48 | ?> | 48 | ?> |