projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
222a114
)
Use the correct constant, don't depend on PDO.
author
Jan Schneider
<jan@horde.org>
Tue, 1 Feb 2011 14:54:26 +0000
(15:54 +0100)
committer
Jan Schneider
<jan@horde.org>
Tue, 1 Feb 2011 14:54:26 +0000
(15:54 +0100)
horde/admin/sqlshell.php
patch
|
blob
|
history
diff --git
a/horde/admin/sqlshell.php
b/horde/admin/sqlshell.php
index
f5f9e06
..
097d2d5
100644
(file)
--- a/
horde/admin/sqlshell.php
+++ b/
horde/admin/sqlshell.php
@@
-60,7
+60,7
@@
if (isset($result)) {
echo '<table cellspacing="1" class="item striped">';
$first = true;
$i = 0;
- while ($row = $result->fetch(
PDO
::FETCH_ASSOC)) {
+ while ($row = $result->fetch(
Horde_Db
::FETCH_ASSOC)) {
if ($first) {
echo '<tr>';
foreach ($row as $key => $val) {