From 7244b4500e2b685cee5e9c4746a87f12acb56297 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Fri, 12 Mar 2010 03:13:59 -0500 Subject: [PATCH] - Merge changes from MDB2's trunk --- program/lib/MDB2/Driver/Datatype/sqlsrv.php | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/program/lib/MDB2/Driver/Datatype/sqlsrv.php b/program/lib/MDB2/Driver/Datatype/sqlsrv.php index 078c2a9..53a7c09 100644 --- a/program/lib/MDB2/Driver/Datatype/sqlsrv.php +++ b/program/lib/MDB2/Driver/Datatype/sqlsrv.php @@ -132,7 +132,7 @@ */ function getTypeDeclaration($field) { - $db =& $this->getDBInstance(); + $db = $this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -211,7 +211,7 @@ */ function _getIntegerDeclaration($name, $field) { - $db =& $this->getDBInstance(); + $db = $this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -265,7 +265,7 @@ */ function _getCLOBDeclaration($name, $field) { - $db =& $this->getDBInstance(); + $db = $this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -301,7 +301,7 @@ */ function _getBLOBDeclaration($name, $field) { - $db =& $this->getDBInstance(); + $db = $this->getDBInstance(); if (PEAR::isError($db)) { return $db; } @@ -431,7 +431,7 @@ $length = null; break; default: - $db =& $this->getDBInstance(); + $db = $this->getDBInstance(); if (PEAR::isError($db)) { return $db; } -- Gitblit v1.9.1