remove reference assignment where unnecessary

Avoids a number of warnings on PHP7.
This commit is contained in:
Sarah Hoffmann
2016-06-04 23:46:19 +02:00
parent 92095c9247
commit 2156fb1ad7
3 changed files with 3 additions and 3 deletions

View File

@@ -94,7 +94,7 @@
{
echo "Create DB\n";
$bDidSomething = true;
$oDB =& DB::connect(CONST_Database_DSN, false);
$oDB = DB::connect(CONST_Database_DSN, false);
if (!PEAR::isError($oDB))
{
fail('database already exists ('.CONST_Database_DSN.')');