]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Updated OStatus form markup
authorSarven Capadisli <csarven@status.net>
Sat, 13 Feb 2010 17:44:41 +0000 (18:44 +0100)
committerSarven Capadisli <csarven@status.net>
Sat, 13 Feb 2010 17:44:41 +0000 (18:44 +0100)
plugins/OStatus/actions/ostatusinit.php

index bac2c4d4382b56737b2d89f7e6005912c467e7b4..11f81ecb96dfd0b1b30c14f61d000d2f9a14a637 100644 (file)
@@ -79,15 +79,15 @@ class OStatusInitAction extends Action
                                           'class' => 'form_settings',
                                           'action' => common_local_url('ostatusinit')));
         $this->elementStart('fieldset');
-        $this->element('legend', _('Subscribe to a remote user'));
+        $this->element('legend', null,  sprintf(_('Subscribe to %s'), $this->nickname));
         $this->hidden('token', common_session_token());
 
         $this->elementStart('ul', 'form_data');
-        $this->elementStart('li');
+        $this->elementStart('li', array('id' => 'ostatus_nickname'));
         $this->input('nickname', _('User nickname'), $this->nickname,
                      _('Nickname of the user you want to follow'));
         $this->elementEnd('li');
-        $this->elementStart('li');
+        $this->elementStart('li', array('id' => 'ostatus_profile'));
         $this->input('acct', _('Profile Account'), $this->acct,
                      _('Your account id (i.e. user@identi.ca)'));
         $this->elementEnd('li');
@@ -95,7 +95,7 @@ class OStatusInitAction extends Action
         $this->submit('submit', _('Subscribe'));
         $this->elementEnd('fieldset');
         $this->elementEnd('form');
-    }        
+    }
 
     function ostatusConnect()
     {
@@ -125,4 +125,4 @@ class OStatusInitAction extends Action
       return _('OStatus Connect');  
     }
   
-}
\ No newline at end of file
+}