diff options
-rw-r--r-- | CHANGELOG.txt | 3 | ||||
-rw-r--r-- | includes/bootstrap.inc | 2 | ||||
-rw-r--r-- | includes/database/database.inc | 5 |
3 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 9f1bcf129..68bcd4f44 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,7 @@ +Drupal 7.27, xxxx-xx-xx (development version) +----------------------- + Drupal 7.26, 2014-01-15 ---------------------- - Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-001. diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index e5de2d180..6dc4217b4 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -8,7 +8,7 @@ /** * The current system version. */ -define('VERSION', '7.26'); +define('VERSION', '7.27-dev'); /** * Core API compatibility. 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 |