diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-03-04 18:09:21 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-03-04 18:09:21 +0000 |
| commit | 09afb00a649d76e50e4d5c2a51e5947ca9e1b55e (patch) | |
| tree | 48c3caf9847ca214d468f34f45dbd323d5a866b6 | |
| parent | 0d417bd376ae45e59bb6c4689ae24875c1d5287e (diff) | |
- fix syntax error (#1486533)
git-svn-id: https://svn.roundcube.net/trunk@3319 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/lib/MDB2/Driver/sqlsrv.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/MDB2/Driver/sqlsrv.php b/roundcubemail/program/lib/MDB2/Driver/sqlsrv.php index c00aaf48f..7f1017a6e 100644 --- a/roundcubemail/program/lib/MDB2/Driver/sqlsrv.php +++ b/roundcubemail/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);
|
