diff --git a/core/modules/node/lib/Drupal/node/NodeFormController.php b/core/modules/node/lib/Drupal/node/NodeFormController.php index a787175..3edf6c6 100644 --- a/core/modules/node/lib/Drupal/node/NodeFormController.php +++ b/core/modules/node/lib/Drupal/node/NodeFormController.php @@ -469,12 +469,12 @@ public function save(array $form, array &$form_state) { $t_args = array('@type' => node_get_type_label($node), '%title' => $node->label()); if ($insert) { - watchdog('content', '@type: added %title.', $watchdog_args, WATCHDOG_NOTICE, $node_link); - drupal_set_message(t('@type %title has been created.', $t_args)); + watchdog('content', '@type: added "%title".', $watchdog_args, WATCHDOG_NOTICE, $node_link); + drupal_set_message(t('@type "%title" has been created.', $t_args)); } else { - watchdog('content', '@type: updated %title.', $watchdog_args, WATCHDOG_NOTICE, $node_link); - drupal_set_message(t('@type %title has been updated.', $t_args)); + watchdog('content', '@type: updated "%title".', $watchdog_args, WATCHDOG_NOTICE, $node_link); + drupal_set_message(t('@type "%title" has been updated.', $t_args)); } if ($node->id()) {