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

- Patch #757288 by catch, jpmckinney: optimize comment_save().

parent 45dbfaf8
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
...@@ -1243,16 +1243,20 @@ function comment_node_prepare($node) { ...@@ -1243,16 +1243,20 @@ function comment_node_prepare($node) {
* Implements hook_node_insert(). * Implements hook_node_insert().
*/ */
function comment_node_insert($node) { function comment_node_insert($node) {
db_insert('node_comment_statistics') // Allow bulk updates and inserts to temporarily disable the
->fields(array( // maintenance of the {node_comment_statistics} table.
'nid' => $node->nid, if (variable_get('comment_maintain_node_statistics', TRUE)) {
'cid' => 0, db_insert('node_comment_statistics')
'last_comment_timestamp' => $node->changed, ->fields(array(
'last_comment_name' => NULL, 'nid' => $node->nid,
'last_comment_uid' => $node->uid, 'cid' => 0,
'comment_count' => 0, 'last_comment_timestamp' => $node->changed,
)) 'last_comment_name' => NULL,
->execute(); 'last_comment_uid' => $node->uid,
'comment_count' => 0,
))
->execute();
}
} }
/** /**
......
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