Index: trunk/extensions/MSSQLBackCompat/DatabaseMssqlOld.php |
— | — | @@ -131,12 +131,9 @@ |
132 | 132 | /** |
133 | 133 | * Close an MSSQL database |
134 | 134 | */ |
135 | | - function close() { |
136 | | - $this->mOpened = false; |
137 | | - if ($this->mConn) { |
138 | | - if ($this->trxLevel()) $this->commit(); |
139 | | - return mssql_close($this->mConn); |
140 | | - } else return true; |
| 135 | + function closeConnection() { |
| 136 | + if ($this->trxLevel()) $this->commit(); |
| 137 | + return mssql_close($this->mConn); |
141 | 138 | } |
142 | 139 | |
143 | 140 | /** |