Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Delegate parameter requested
I need a line in /themes/settings_applicants_form.php:
around line 38, right before
This is for ApplicantsIP. Thanks.
$this->DelegateParameters['Applicant'] = &$Applicant;
around line 38, right before
$this->DelegateParameters['ApplicantList'] = &$ApplicantList;
$this->CallDelegate('PostEmailAddress');
This is for ApplicantsIP. Thanks.
0
This discussion has been closed.
Comments
right after $LastUrl it looks like this
$LastUrl = GetLastCommentQuerystring($Discussion, $this->Context->Configuration, $CurrentUserJumpToLastCommentPref); $this->CallDelegate('PreDiscussionRender'); $DiscussionList .= ' <li id="Discussion_'.$Discussion->DiscussionID.'" class="Discussion'.$Discussion->Status.($Discussion->CountComments == 1?' NoReplies':'').($this->Context->Configuration['USE_CATEGORIES'] ? ' Category_'.$Discussion->CategoryID:'').($Alternate ? ' Alternate' : '').'">'; $this->CallDelegate('PreDiscussionOptionsRender'); $DiscussionList .= '<ul> <li class="DiscussionType">
and one right at the bottom
</li>'; $this->CallDelegate('PostDiscussionRender'); ?>
line 185 add a delegate parameter and call delegate
$this->DelegateParameters['DataSet'] = &$DataSet; $this->CallDelegate('PostGetPropertiesFromDataSet');
in Vanilla.Control.CommentGrid.php
line 56 add a delegate parameter
$this->DelegateParameters['CommentManager'] = &$CommentManager;
Mark, are you still adding these or is dinoboff or someone doing this type of stuff now?
Now, when you say "next release" do you mean Vanilla2?? Or is there going to be more releases in the 1.1 branch?