summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-10-19 21:24:19 -0700
committerZach Copley <zach@status.net>2010-10-19 21:24:19 -0700
commit2760ef07f538da4116074ff7e2a04f799906a5bc (patch)
treef8ffc65e6228bcd960461d2db8407ce8a3048e94
parent5ca29ab0de22b5d8167af5adb320d6acdda807b7 (diff)
Stick OAuth developer help info in a section
-rw-r--r--actions/oauthconnectionssettings.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/actions/oauthconnectionssettings.php b/actions/oauthconnectionssettings.php
index 72624de84..0590b729c 100644
--- a/actions/oauthconnectionssettings.php
+++ b/actions/oauthconnectionssettings.php
@@ -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');
}
}