forked from GNUsocial/gnu-social
pass profile id for subscriptions rather than user name
darcs-hash:20081208031312-5ed1f-b570b86b28e8eda763c51be1ae091034f76bd984.gz
This commit is contained in:
@@ -2050,15 +2050,15 @@ function common_nudge_response() {
|
||||
}
|
||||
|
||||
function common_subscribe_form($profile) {
|
||||
common_element_start('form', array('id' => 'subscribe-' . $profile->nickname,
|
||||
common_element_start('form', array('id' => 'subscribe-' . $profile->id,
|
||||
'method' => 'post',
|
||||
'class' => 'subscribe',
|
||||
'action' => common_local_url('subscribe')));
|
||||
common_hidden('token', common_session_token());
|
||||
common_element('input', array('id' => 'subscribeto-' . $profile->nickname,
|
||||
common_element('input', array('id' => 'subscribeto-' . $profile->id,
|
||||
'name' => 'subscribeto',
|
||||
'type' => 'hidden',
|
||||
'value' => $profile->nickname));
|
||||
'value' => $profile->id));
|
||||
common_element('input', array('type' => 'submit',
|
||||
'class' => 'submit',
|
||||
'value' => _('Subscribe')));
|
||||
|
Reference in New Issue
Block a user