From c65cfcabb51b186965422359769266ad7a536c4b Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Thu, 24 Oct 2002 15:39:24 +0000 Subject: [PATCH] - sort books by weight, then title in book_render(). --- modules/book.module | 2 +- modules/book/book.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/book.module b/modules/book.module index f8f5d274d0..9768b650ae 100644 --- a/modules/book.module +++ b/modules/book.module @@ -504,7 +504,7 @@ function book_tree($parent = 0, $depth = 3) { function book_render() { global $theme; - $result = db_query("SELECT n.nid FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE b.parent = 0 AND n.status = 1 AND (n.moderate = 0 OR n.revisions != '') ORDER BY b.weight"); + $result = db_query("SELECT n.nid FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE b.parent = 0 AND n.status = 1 AND (n.moderate = 0 OR n.revisions != '') ORDER BY b.weight, n.title"); while ($page = db_fetch_object($result)) { // load the node: diff --git a/modules/book/book.module b/modules/book/book.module index f8f5d274d0..9768b650ae 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -504,7 +504,7 @@ function book_tree($parent = 0, $depth = 3) { function book_render() { global $theme; - $result = db_query("SELECT n.nid FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE b.parent = 0 AND n.status = 1 AND (n.moderate = 0 OR n.revisions != '') ORDER BY b.weight"); + $result = db_query("SELECT n.nid FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE b.parent = 0 AND n.status = 1 AND (n.moderate = 0 OR n.revisions != '') ORDER BY b.weight, n.title"); while ($page = db_fetch_object($result)) { // load the node: -- GitLab