Deprecated: Assigning the return value of new by reference is deprecated in /home/bluestat/public_html/source/index.php on line 477
From ba367226ca08323f263d7bad585cac619b1f1eca 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 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'],
--
1.7.11.3