]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Stick OAuth developer help info in a section
authorZach Copley <zach@status.net>
Wed, 20 Oct 2010 04:24:19 +0000 (21:24 -0700)
committerZach Copley <zach@status.net>
Wed, 20 Oct 2010 04:24:19 +0000 (21:24 -0700)
actions/oauthconnectionssettings.php

index 72624de84dce61480f5223856a8238628d284dbc..0590b729cb1672d86542a782e01b992cbb9437db 100644 (file)
@@ -216,6 +216,8 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction
     {
         $cur = common_current_user();
 
+        $this->elementStart('div', array('id' => 'developer-help', 'class' => 'section'));
+
         $this->element('h2', null, 'Developers');
         $this->elementStart('p');
 
@@ -228,6 +230,8 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction
 
         $this->raw($output);
         $this->elementEnd('p');
+
+        $this->elementEnd('section');
     }
 
 }