Skip to content

Commit

Permalink
Update to Drupal 7.94. For more information, see https://www.drupal.o…
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantheon Automation authored and greg-1-anderson committed Dec 14, 2022
1 parent d3209ba commit 7df1ddd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Drupal 7.94, 2022-12-14
-----------------------
- Hotfix for book.module and Select query properties

Drupal 7.93, 2022-12-07
-----------------------
- Improved support for PHP 8.2
Expand Down
2 changes: 1 addition & 1 deletion includes/bootstrap.inc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* The current system version.
*/
define('VERSION', '7.93');
define('VERSION', '7.94');

/**
* Core API compatibility.
Expand Down
4 changes: 2 additions & 2 deletions includes/database/select.inc
Original file line number Diff line number Diff line change
Expand Up @@ -949,14 +949,14 @@ class SelectQuery extends Query implements SelectQueryInterface {
*
* @var array
*/
protected $alterMetaData;
public $alterMetaData;

/**
* The query tags.
*
* @var array
*/
protected $alterTags;
public $alterTags;

/**
* An array whose elements specify a query to UNION, and the UNION type. The
Expand Down
15 changes: 6 additions & 9 deletions modules/book/book.module
Original file line number Diff line number Diff line change
Expand Up @@ -872,15 +872,12 @@ function book_menu_name($bid) {
* Implements hook_node_load().
*/
function book_node_load($nodes, $types) {
$allowed = variable_get('book_allowed_types', array('book'));
if (array_intersect($types, $allowed)) {
$result = db_query("SELECT * FROM {book} b INNER JOIN {menu_links} ml ON b.mlid = ml.mlid WHERE b.nid IN (:nids)", array(':nids' => array_keys($nodes)), array('fetch' => PDO::FETCH_ASSOC));
foreach ($result as $record) {
$nodes[$record['nid']]->book = $record;
$nodes[$record['nid']]->book['href'] = $record['link_path'];
$nodes[$record['nid']]->book['title'] = $record['link_title'];
$nodes[$record['nid']]->book['options'] = unserialize($record['options']);
}
$result = db_query("SELECT * FROM {book} b INNER JOIN {menu_links} ml ON b.mlid = ml.mlid WHERE b.nid IN (:nids)", array(':nids' => array_keys($nodes)), array('fetch' => PDO::FETCH_ASSOC));
foreach ($result as $record) {
$nodes[$record['nid']]->book = $record;
$nodes[$record['nid']]->book['href'] = $record['link_path'];
$nodes[$record['nid']]->book['title'] = $record['link_title'];
$nodes[$record['nid']]->book['options'] = unserialize($record['options']);
}
}

Expand Down

0 comments on commit 7df1ddd

Please sign in to comment.