forked from GNUsocial/gnu-social
Only show training buttons if you can train
This commit is contained in:
parent
717bb5f456
commit
cfef7af2ae
@ -168,22 +168,27 @@ class ActivitySpamPlugin extends Plugin
|
||||
|
||||
function onEndShowNoticeOptionItems($nli)
|
||||
{
|
||||
$notice = $nli->getNotice();
|
||||
$out = $nli->getOut();
|
||||
$profile = Profile::current();
|
||||
|
||||
if (!empty($notice)) {
|
||||
if (!empty($profile) && $profile->hasRight(self::TRAINSPAM)) {
|
||||
|
||||
$score = $this->getScore($notice);
|
||||
$notice = $nli->getNotice();
|
||||
$out = $nli->getOut();
|
||||
|
||||
if (empty($score)) {
|
||||
$this->debug("No score for notice " . $notice->id);
|
||||
// XXX: show a question-mark or something
|
||||
} else if ($score->is_spam) {
|
||||
$form = new TrainHamForm($out, $notice);
|
||||
$form->show();
|
||||
} else if (!$score->is_spam) {
|
||||
$form = new TrainSpamForm($out, $notice);
|
||||
$form->show();
|
||||
if (!empty($notice)) {
|
||||
|
||||
$score = $this->getScore($notice);
|
||||
|
||||
if (empty($score)) {
|
||||
$this->debug("No score for notice " . $notice->id);
|
||||
// XXX: show a question-mark or something
|
||||
} else if ($score->is_spam) {
|
||||
$form = new TrainHamForm($out, $notice);
|
||||
$form->show();
|
||||
} else if (!$score->is_spam) {
|
||||
$form = new TrainSpamForm($out, $notice);
|
||||
$form->show();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user