mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Reports: Fix 500 error while trying to delete any non-text publication
This commit is contained in:
parent
ee2e5e8d1c
commit
bddfbdc368
1 changed files with 7 additions and 2 deletions
|
@ -96,8 +96,13 @@ class Report extends RowModel
|
|||
{
|
||||
if ($this->getContentType() !== "user") {
|
||||
$pubTime = $this->getContentObject()->getPublicationTime();
|
||||
if (method_exists($this->getContentObject(), "getName")) {
|
||||
$name = $this->getContentObject()->getName();
|
||||
$this->getAuthor()->adminNotify("Ваш контент, который вы опубликовали $pubTime ($name) был удалён модераторами инстанса. За повторные или серьёзные нарушения вас могут заблокировать.");
|
||||
$placeholder = "$pubTime ($name)";
|
||||
} else {
|
||||
$placeholder = "$pubTime";
|
||||
}
|
||||
$this->getAuthor()->adminNotify("Ваш контент, который вы опубликовали $placeholder был удалён модераторами инстанса. За повторные или серьёзные нарушения вас могут заблокировать.");
|
||||
$this->getContentObject()->delete($this->getContentType() !== "app");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue