Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/Notifications/ComplaintNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ public function toMail($notifiable) {
->from($mailFrom)
->subject($mailSubject)
->line(Lang::get('A message via the wikibase.cloud form for reporting illegal content has been submitted.'))
->line(Lang::get('Reporter name: ') . $name)
->line(Lang::get('Reporter email address: ') . $mailAddress)
->line(Lang::get('Reason why the information in question is illegal content:'))
->line('**' . Lang::get('Reporter name:') . '** ' . $name)
->line('**' . Lang::get('Reporter email address:') . '** ' . $mailAddress)
->line('**' . Lang::get('Reason why the information in question is illegal content:') . '**')
->line($this->reason)
->line(Lang::get('URL(s) for the content in question:'))
->line('**' . Lang::get('URL(s) for the content in question:') . '**')
->line($this->offendingUrls)
->line('---');
}
Expand Down
Loading