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??