summaryrefslogtreecommitdiff
path: root/src/Bridge.php
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-04-11 20:51:48 +0000
committeruckelman <uckelman@nomic.net>2010-04-11 20:51:48 +0000
commit3324a6e7955a3e755fc2ce64dabfb98b7e19684d (patch)
tree165ba72408638042bafe3ebd6249a88222785d9e /src/Bridge.php
parentcb0a28a4e77c41e149efddce5c79ff6dd6c4ab63 (diff)
Fixed test.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6684 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src/Bridge.php')
-rw-r--r--src/Bridge.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Bridge.php b/src/Bridge.php
index 54f9880..9ec0626 100644
--- a/src/Bridge.php
+++ b/src/Bridge.php
@@ -66,7 +66,7 @@ class Bridge {
$result = $this->db->query($sql);
- $rows = $result->fetchAll(PDO::FETCH_COLUMN);
+ $rows = $result->fetchAll(PDO::FETCH_COLUMN, 0);
$result->closeCursor();
return $rows;
}