Skip to content
Snippets Groups Projects
Commit 0027d951 authored by Pim van den Berg's avatar Pim van den Berg
Browse files

include local configuration file once

When config.php was copied to config.inc.php it would result in a infinite
include loop.
parent b1e34bd1
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,6 @@ $CONFIG['socket'] = NULL;
# load local configuration
if (file_exists(dirname(__FILE__).'/config.local.php'))
include 'config.local.php';
include_once 'config.local.php';
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment