1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

#47 - Changes the location of the reply and edit comment box.

This commit is contained in:
Abijeet
2017-06-05 00:20:37 +05:30
parent 689d1eb082
commit 7c6fe8c4e2
6 changed files with 7 additions and 7 deletions

View File

@ -46,8 +46,8 @@ class CommentRepo {
}
public function delete($comment) {
$comment->text = trans('activities.comment_deleted');
$comment->html = trans('activities.comment_deleted');
$comment->text = trans('entities.comment_deleted');
$comment->html = trans('entities.comment_deleted');
$comment->active = false;
$userId = user()->id;
$comment->updated_by = $userId;