From 6ab14ddbd7fb3827f1270b92f1c75c616c077705 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Tue, 1 Feb 2011 15:54:26 +0100 Subject: [PATCH] Use the correct constant, don't depend on PDO. --- horde/admin/sqlshell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horde/admin/sqlshell.php b/horde/admin/sqlshell.php index f5f9e0677..097d2d5d6 100644 --- a/horde/admin/sqlshell.php +++ b/horde/admin/sqlshell.php @@ -60,7 +60,7 @@ if (isset($result)) { echo ''; $first = true; $i = 0; - while ($row = $result->fetch(PDO::FETCH_ASSOC)) { + while ($row = $result->fetch(Horde_Db::FETCH_ASSOC)) { if ($first) { echo ''; foreach ($row as $key => $val) { -- 2.11.0