diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-08 20:53:42 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-08 20:53:42 -0400 |
commit | d6c2bd51c54f92140c16b8b2d318efc9c4b74f98 (patch) | |
tree | 9c976228d6f10f3df1ca565dbb6e676d8bc3a5a5 | |
parent | de2e36eeb75a364c3ebecb72af686ee7cc113345 (diff) |
name of form on remote subscribe changed
darcs-hash:20080709005342-84dde-de6e2ce487c54ac53ea60757f216e4ba6379f196.gz
-rw-r--r-- | actions/remotesubscribe.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index ce8b4057b..ea63f2229 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -64,7 +64,9 @@ class RemotesubscribeAction extends Action { $profile = $this->trimmed('profile_url'); common_show_header(_t('Remote subscribe'), NULL, $err, array($this, 'show_top')); - common_element_start('form', array('id' => 'remotesubscribe', 'method' => 'post', + # id = remotesubscribe conflicts with the + # button on profile page + common_element_start('form', array('id' => 'remsub', 'method' => 'post', 'action' => common_local_url('remotesubscribe'))); common_input('nickname', _t('User nickname'), $nickname, _t('Nickname of the user you want to follow')); |