Only get column name keys.
authorJan Schneider <jan@horde.org>
Tue, 1 Feb 2011 14:11:57 +0000 (15:11 +0100)
committerJan Schneider <jan@horde.org>
Tue, 1 Feb 2011 14:11:57 +0000 (15:11 +0100)
horde/admin/sqlshell.php

index fe0ecf7..f5f9e06 100644 (file)
@@ -60,7 +60,7 @@ if (isset($result)) {
         echo '<table cellspacing="1" class="item striped">';
         $first = true;
         $i = 0;
-        while ($row = $result->fetch()) {
+        while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
             if ($first) {
                 echo '<tr>';
                 foreach ($row as $key => $val) {