1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-14 02:34:24 +02:00
This commit is contained in:
Ryan Cramer
2019-03-01 11:58:30 -05:00
parent 8952afbddb
commit a43ea0ffa1

View File

@@ -343,7 +343,7 @@ class CommentNotifications extends Wire {
);
if($fieldtype->updateComment($page, $field, $comment, $properties)) {
$info['message'] = "Updated comment $comment->id to '$action'";
$info['message'] = sprintf($this->_('Updated comment %d to “%s”'), $comment->id, $action);
$info['success'] = true;
$this->wire('log')->message($info['message']);
} else {