From: Robert Sesek Date: Sat, 14 Feb 2009 21:09:20 +0000 (-0500) Subject: Use include() rather than require_once() in Authentication::_setupDatabase() X-Git-Url: https://src.bluestatic.org/?a=commitdiff_plain;h=ba367226ca08323f263d7bad585cac619b1f1eca;p=bugdar.git 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 dfbac46..8e6b223 100644 --- a/includes/auth/auth.php +++ b/includes/auth/auth.php @@ -113,7 +113,7 @@ class Authentication // connect to the DB $this->authDb = new BSDBMySQLI(); - require_once 'includes/auth/config.php'; + include 'includes/auth/config.php'; $this->authDb->connect( $config['auth']['dbServer'], $config['auth']['dbUser'],