summaryrefslogtreecommitdiff
path: root/program/lib
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-03-04 18:09:21 +0000
committeralecpl <alec@alec.pl>2010-03-04 18:09:21 +0000
commitc1db394bf1a5e923920e5fe8646f9e6ce7ec8f8c (patch)
tree886ecafad02622456547f9b36208decb486db658 /program/lib
parentf1ce5163e5b91ab2efc0eb28eec7091be0144483 (diff)
- fix syntax error (#1486533)
Diffstat (limited to 'program/lib')
-rw-r--r--program/lib/MDB2/Driver/sqlsrv.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/MDB2/Driver/sqlsrv.php b/program/lib/MDB2/Driver/sqlsrv.php
index c00aaf48f..7f1017a6e 100644
--- a/program/lib/MDB2/Driver/sqlsrv.php
+++ b/program/lib/MDB2/Driver/sqlsrv.php
@@ -1012,7 +1012,7 @@ class MDB2_Result_sqlsrv extends MDB2_Result_Common
return $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null,
'resultset has already been freed', __FUNCTION__);
}
- if (null === $this->result)) {
+ if (null === $this->result) {
return false;
}
$ret = sqlsrv_next_result($this->result);