projects
/
phpfspot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e54e729
)
fetchSingleRow wasn't used before and produced a bug. fixed now.
author
Andreas Unterkircher
<unki@netshadow.at>
Sun, 6 Jan 2008 16:48:50 +0000
(17:48 +0100)
committer
Andreas Unterkircher
<unki@netshadow.at>
Sun, 6 Jan 2008 16:48:50 +0000
(17:48 +0100)
Signed-off-by: Arun Persaud <arun@nubati.net>
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
phpfspot_db.php
patch
|
blob
|
history
diff --git
a/phpfspot_db.php
b/phpfspot_db.php
index df41e73e7bd9cc31881ca8d916ffaf405f26e878..807cf0feb36ca072307497ba4d920208b4b27b3c 100644
(file)
--- a/
phpfspot_db.php
+++ b/
phpfspot_db.php
@@
-206,7
+206,7
@@
class PHPFSPOT_DB {
$row = $this->db_fetch_object($result);
break;
case 'pdo':
- $row = $result
[0]
;
+ $row = $result
->fetch()
;
break;
}
return $row;