diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-12 14:40:28 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-12 14:40:28 -0400 |
commit | c2a170da108a6645846aa2e60238974b49363b21 (patch) | |
tree | 9f8cae9f53744d4a5a03e7350065079ac6ac4faa /actions/remotesubscribe.php | |
parent | aaf0786bef3515ed8d61c18b001372e2e0ddff6a (diff) |
broadcast profile and change subscription input id
darcs-hash:20080612184028-84dde-1f919ab373e5731efd403986ae760116769566d9.gz
Diffstat (limited to 'actions/remotesubscribe.php')
-rw-r--r-- | actions/remotesubscribe.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index 739c92eea..b676484cd 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -41,7 +41,7 @@ class RemotesubscribeAction extends Action { function show_form($err=NULL) { $nickname = $this->trimmed('nickname'); - $profile = $this->trimmed('profile'); + $profile = $this->trimmed('profile_url'); common_show_header(_t('Remote subscribe')); if ($err) { common_element('div', 'error', $err); @@ -50,7 +50,7 @@ class RemotesubscribeAction extends Action { 'action' => common_local_url('remotesubscribe'))); common_input('nickname', _t('User nickname'), $nickname, _t('Nickname of the user you want to follow')); - common_input('profile', _t('Profile URL'), $profile, + common_input('profile_url', _t('Profile URL'), $profile, _t('URL of your profile on another compatible microblogging service')); common_submit('submit', _t('Subscribe')); common_element_end('form'); @@ -65,7 +65,7 @@ class RemotesubscribeAction extends Action { return; } - $profile = $this->trimmed('profile'); + $profile = $this->trimmed('profile_url'); if (!$profile) { $this->show_form(_t('No such user!')); |