mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Reports: Fix 500 error while trying to delete group's publication
This commit is contained in:
parent
bddfbdc368
commit
a2c5896fa1
1 changed files with 8 additions and 1 deletions
|
@ -3,6 +3,7 @@ namespace openvk\Web\Models\Entities;
|
||||||
use openvk\Web\Util\DateTime;
|
use openvk\Web\Util\DateTime;
|
||||||
use Nette\Database\Table\ActiveRow;
|
use Nette\Database\Table\ActiveRow;
|
||||||
use openvk\Web\Models\RowModel;
|
use openvk\Web\Models\RowModel;
|
||||||
|
use openvk\Web\Models\Entities\Club;
|
||||||
use Chandler\Database\DatabaseConnection;
|
use Chandler\Database\DatabaseConnection;
|
||||||
use openvk\Web\Models\Repositories\{Applications, Comments, Notes, Reports, Users, Posts, Photos, Videos, Clubs};
|
use openvk\Web\Models\Repositories\{Applications, Comments, Notes, Reports, Users, Posts, Photos, Videos, Clubs};
|
||||||
use Chandler\Database\DatabaseConnection as DB;
|
use Chandler\Database\DatabaseConnection as DB;
|
||||||
|
@ -102,7 +103,13 @@ class Report extends RowModel
|
||||||
} else {
|
} else {
|
||||||
$placeholder = "$pubTime";
|
$placeholder = "$pubTime";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($this->getAuthor() instanceof Club) {
|
||||||
|
$name = $this->getAuthor()->getName();
|
||||||
|
$this->getAuthor()->getOwner()->adminNotify("Ваш контент, который опубликовали $placeholder в созданной вами группе \"$name\" был удалён модераторами инстанса. За повторные или серьёзные нарушения группу могут заблокировать.");
|
||||||
|
} else {
|
||||||
$this->getAuthor()->adminNotify("Ваш контент, который вы опубликовали $placeholder был удалён модераторами инстанса. За повторные или серьёзные нарушения вас могут заблокировать.");
|
$this->getAuthor()->adminNotify("Ваш контент, который вы опубликовали $placeholder был удалён модераторами инстанса. За повторные или серьёзные нарушения вас могут заблокировать.");
|
||||||
|
}
|
||||||
$this->getContentObject()->delete($this->getContentType() !== "app");
|
$this->getContentObject()->delete($this->getContentType() !== "app");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue