$other = User::staticGet('nickname', $other_nickname);
$this->notify($user, $other);
- if (true || $this->boolean('ajax')) {
+ if ($this->boolean('ajax')) {
common_start_html('text/xml');
common_element_start('head');
common_element('title', null, _('Nudge sent'));
common_element_end('body');
common_element_end('html');
} else {
- common_redirect(common_local_url('nudge',
- array('nickname' => $user->nickname)));
+ // display a confirmation to the user
+ common_redirect(common_local_url('showstream',
+ array('nickname' => $other->nickname)));
}
}
common_element('a', array('href' => common_local_url('newmessage', array('to' => $user->id))),
_('Send a message'));
common_element_end('li');
- common_element_start('li', array('id' => 'profile_nudge'));
- common_nudge_form($user);
- common_element_end('li');
+ if ($user->email && $user->emailnotifynudge) {
+ common_element_start('li', array('id' => 'profile_nudge'));
+ common_nudge_form($user);
+ common_element_end('li');
+ }
}
common_element_end('ul');