summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-04-11 20:53:12 +0000
committeruckelman <uckelman@nomic.net>2010-04-11 20:53:12 +0000
commitc142502ec6ebe23e3b54d36441c23a6a9a17d4e2 (patch)
tree7bda838ac24324aa788e7b1deacc1b16c8d243ee /src
parent3324a6e7955a3e755fc2ce64dabfb98b7e19684d (diff)
Fixed test.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6685 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src')
-rw-r--r--src/Bridge.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Bridge.php b/src/Bridge.php
index 9ec0626..54f9880 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, 0);
+ $rows = $result->fetchAll(PDO::FETCH_COLUMN);
$result->closeCursor();
return $rows;
}