Use new event to show forms

This commit is contained in:
Evan Prodromou 2012-03-08 07:01:37 -06:00
parent 5efcfb8598
commit e8e0b8c053
1 changed files with 1 additions and 5 deletions

View File

@ -172,7 +172,7 @@ class ActivitySpamPlugin extends Plugin
return false;
}
function onStartShowNoticeOptions($nli)
function onEndShowNoticeOptionItems($nli)
{
$notice = $nli->getNotice();
$out = $nli->getOut();
@ -186,14 +186,10 @@ class ActivitySpamPlugin extends Plugin
// XXX: show a question-mark or something
} else if ($score->is_spam) {
$form = new TrainHamForm($out, $notice);
$out->elementStart('div', 'notice-options');
$form->show();
$out->elementEnd('div');
} else if (!$score->is_spam) {
$form = new TrainSpamForm($out, $notice);
$out->elementStart('div', 'notice-options');
$form->show();
$out->elementEnd('div');
}
}