diff options
author | Jennifer Hodgdon <yahgrp@poplarware.com> | 2014-01-10 08:40:08 -0800 |
---|---|---|
committer | Jennifer Hodgdon <yahgrp@poplarware.com> | 2014-01-10 08:40:08 -0800 |
commit | 1687e382ea7faae78ffd0f316569bd3c41a05c9b (patch) | |
tree | d53f5919ac636144b9fcdd0750856fb135c7dc3f /includes/database | |
parent | cbd890f34f102f6500a7617e9771470422c7d8a6 (diff) | |
download | brdo-1687e382ea7faae78ffd0f316569bd3c41a05c9b.tar.gz brdo-1687e382ea7faae78ffd0f316569bd3c41a05c9b.tar.bz2 |
Issue #2164179 by StephaneQ: Fix links to extenders in Database API topic page
Diffstat (limited to 'includes/database')
-rw-r--r-- | includes/database/database.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/includes/database/database.inc b/includes/database/database.inc index 604dd4c7a..b375aa411 100644 --- a/includes/database/database.inc +++ b/includes/database/database.inc @@ -28,8 +28,9 @@ * Most Drupal database SELECT queries are performed by a call to db_query() or * db_query_range(). Module authors should also consider using the PagerDefault * Extender for queries that return results that need to be presented on - * multiple pages, and the Tablesort Extender for generating appropriate queries - * for sortable tables. + * multiple pages (see https://drupal.org/node/508796), and the TableSort + * Extender for generating appropriate queries for sortable tables + * (see https://drupal.org/node/1848372). * * For example, one might wish to return a list of the most recent 10 nodes * authored by a given user. Instead of directly issuing the SQL query |