Make sure the session token gets output no matter what (whoops)

This commit is contained in:
Zach Copley 2011-09-17 15:50:13 -07:00
parent 2df2d4fd1d
commit d4ed6db1d8

View File

@ -363,11 +363,11 @@ class TwitterauthorizationAction extends Action
$this->hidden('twuid', $this->twuid); $this->hidden('twuid', $this->twuid);
$this->hidden('tw_fields_screen_name', $this->tw_fields['screen_name']); $this->hidden('tw_fields_screen_name', $this->tw_fields['screen_name']);
$this->hidden('tw_fields_name', $this->tw_fields['fullname']); $this->hidden('tw_fields_name', $this->tw_fields['fullname']);
$this->hidden('token', common_session_token());
// Don't allow new account creation if site is flagged as invite only // Don't allow new account creation if site is flagged as invite only
if (common_config('site', 'inviteonly') == false) { if (common_config('site', 'inviteonly') == false) {
$this->elementStart('fieldset'); $this->elementStart('fieldset');
$this->hidden('token', common_session_token());
$this->element('legend', null, $this->element('legend', null,
// TRANS: Fieldset legend. // TRANS: Fieldset legend.
_m('Create new account')); _m('Create new account'));