diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-10-11 12:25:25 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-10-11 12:25:25 +0000 |
commit | 959cae82224e799e7bf9f5b8efd2fa9877058dca (patch) | |
tree | c0933b66dcce0380d7799f7145e205eba5f87e46 /includes/database.inc | |
parent | d62b6dedaa4f4228dc5f42f61009f8deadb097ce (diff) | |
download | brdo-959cae82224e799e7bf9f5b8efd2fa9877058dca.tar.gz brdo-959cae82224e799e7bf9f5b8efd2fa9877058dca.tar.bz2 |
- added sequence tables
- fixed bug in node_page()
- fixed bug in db_result()
- fixed rss glitch
Diffstat (limited to 'includes/database.inc')
-rw-r--r-- | includes/database.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database.inc b/includes/database.inc index be3bdbf17..a3da55254 100644 --- a/includes/database.inc +++ b/includes/database.inc @@ -45,7 +45,7 @@ function db_num_rows($result) { function db_result($result, $field = 0) { if ($result) { - $tmp = $result->fetchRow(DB_FETCHMODE_ASSOC); + $tmp = $result->fetchRow(DB_FETCHMODE_ORDERED); return $tmp[$field]; } } |