summaryrefslogtreecommitdiff
path: root/includes/database
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-03-26 17:14:46 +0000
committerDries Buytaert <dries@buytaert.net>2010-03-26 17:14:46 +0000
commitd428fe37b91d9fb04b62d19d8ce04da32a1ac96c (patch)
tree560f70b5053c1663aecc62df18ffb3ab30aabcfb /includes/database
parent94d0be55b4580086b214f4abbf33858e3f2535ba (diff)
downloadbrdo-d428fe37b91d9fb04b62d19d8ce04da32a1ac96c.tar.gz
brdo-d428fe37b91d9fb04b62d19d8ce04da32a1ac96c.tar.bz2
- Patch #681538 by aspilicious, jhodgdon, trevjs: fixed possibly broken @see also links.
Diffstat (limited to 'includes/database')
-rw-r--r--includes/database/prefetch.inc5
1 files changed, 2 insertions, 3 deletions
diff --git a/includes/database/prefetch.inc b/includes/database/prefetch.inc
index 663927af7..9d02dcfc2 100644
--- a/includes/database/prefetch.inc
+++ b/includes/database/prefetch.inc
@@ -175,9 +175,8 @@ class DatabaseStatementPrefetch implements Iterator, DatabaseStatementInterface
// as soon as possible.
$this->rowCount = $statement->rowCount();
$this->data = $statement->fetchAll(PDO::FETCH_ASSOC);
- // Destroy the statement as soon as possible.
- // See DatabaseConnection_sqlite::PDOPrepare() for explanation.
- // @see DatabaseConnection_sqlite::PDOPrepare()
+ // Destroy the statement as soon as possible. See
+ // DatabaseConnection_sqlite::PDOPrepare() for explanation.
unset($statement);
$this->resultRowCount = count($this->data);