Skip to content
Snippets Groups Projects
Commit 9f770775 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Fixed a misplaced bracket that slipped in due to the db/node_rewrite_sql_patch.

parent 18a0cc23
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -642,7 +642,7 @@ function book_print($nid = 0, $depth = 1) { ...@@ -642,7 +642,7 @@ function book_print($nid = 0, $depth = 1) {
} }
function book_print_recurse($parent = '', $depth = 1) { function book_print_recurse($parent = '', $depth = 1) {
$result = db_query(db_rewrite_sql('SELECT n.nid, n.title, b.weight FROM {node} n INNER JOIN {book} b ON n.nid = b.nid WHERE n.status = 1 AND b.parent = %d AND n.moderate = 0 ORDER BY b.weight, n.title', $parent)); $result = db_query(db_rewrite_sql('SELECT n.nid, n.title, b.weight FROM {node} n INNER JOIN {book} b ON n.nid = b.nid WHERE n.status = 1 AND b.parent = %d AND n.moderate = 0 ORDER BY b.weight, n.title'), $parent);
while ($page = db_fetch_object($result)) { while ($page = db_fetch_object($result)) {
// Load the node: // Load the node:
......
...@@ -642,7 +642,7 @@ function book_print($nid = 0, $depth = 1) { ...@@ -642,7 +642,7 @@ function book_print($nid = 0, $depth = 1) {
} }
function book_print_recurse($parent = '', $depth = 1) { function book_print_recurse($parent = '', $depth = 1) {
$result = db_query(db_rewrite_sql('SELECT n.nid, n.title, b.weight FROM {node} n INNER JOIN {book} b ON n.nid = b.nid WHERE n.status = 1 AND b.parent = %d AND n.moderate = 0 ORDER BY b.weight, n.title', $parent)); $result = db_query(db_rewrite_sql('SELECT n.nid, n.title, b.weight FROM {node} n INNER JOIN {book} b ON n.nid = b.nid WHERE n.status = 1 AND b.parent = %d AND n.moderate = 0 ORDER BY b.weight, n.title'), $parent);
while ($page = db_fetch_object($result)) { while ($page = db_fetch_object($result)) {
// Load the node: // Load the node:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment