From e61ac63f1d5669d601084205566c559ba35824b9 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 14 Feb 2009 16:09:20 -0500 Subject: [PATCH] Use include() rather than require_once() in Authentication::_setupDatabase() * includes/auth/auth.php: (Authentication::_setupDatabase) --- includes/auth/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'], -- 2.22.5