Use include() rather than require_once() in Authentication::_setupDatabase()
Use include() rather than require_once() in Authentication::_setupDatabase()
* includes/auth/auth.php:
(Authentication::_setupDatabase)
diff --git a/includes/auth/auth.php b/includes/auth/auth.php
index 34cfe83..7142914 100644
--- a/includes/auth/auth.php
+++ b/includes/auth/auth.php
@@ -122,7 +122,7 @@ class Authentication
// connect to the DB
$this->authDb = new DB_MySQL($this->registry);
- require_once 'includes/auth/config.php';
+ include 'includes/auth/config.php';
$this->authDb->connect(
$config['auth']['dbServer'],
$config['auth']['dbUser'],