add toselector to poll
This commit is contained in:
parent
c0f63c9a69
commit
9018a118fa
|
@ -138,10 +138,19 @@ class NewPollAction extends Action
|
||||||
throw new ClientException(_m('Poll must have at least two options.'));
|
throw new ClientException(_m('Poll must have at least two options.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Notice options; distinct from choices for the poll
|
||||||
|
|
||||||
|
$options = array();
|
||||||
|
|
||||||
|
// Does the heavy-lifting for getting "To:" information
|
||||||
|
|
||||||
|
ToSelector::fillOptions($this, $options);
|
||||||
|
|
||||||
$saved = Poll::saveNew($this->user->getProfile(),
|
$saved = Poll::saveNew($this->user->getProfile(),
|
||||||
$this->question,
|
$this->question,
|
||||||
$this->options);
|
$this->options,
|
||||||
|
$options);
|
||||||
|
|
||||||
} catch (ClientException $ce) {
|
} catch (ClientException $ce) {
|
||||||
$this->error = $ce->getMessage();
|
$this->error = $ce->getMessage();
|
||||||
$this->showPage();
|
$this->showPage();
|
||||||
|
|
|
@ -131,6 +131,12 @@ class NewpollForm extends Form
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->out->elementEnd('ul');
|
$this->out->elementEnd('ul');
|
||||||
|
|
||||||
|
$toWidget = new ToSelector($this->out,
|
||||||
|
common_current_user(),
|
||||||
|
null);
|
||||||
|
$toWidget->show();
|
||||||
|
|
||||||
$this->out->elementEnd('fieldset');
|
$this->out->elementEnd('fieldset');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user