Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolkan Gezer <volkangezer@gmail.com>2014-04-09 04:10:01 +0400
committerVolkan Gezer <volkangezer@gmail.com>2014-04-09 04:10:01 +0400
commit0e4e1e61ecdea18bedeefb11eee5cfe23da5be42 (patch)
tree06f24f180b79766464fef42ba73256588781ca56 /user_oauth
parent9a039a76e51bde06763c3401310e80beffcf2ed8 (diff)
Fix outdated setting layouts (admin & user page) and wrapping some strings
with t() <fieldset> tags were not used in css files and this was causing settings to be seen unaligned (enable admin_migration and see the admin page for example). changed all fieldsets into <div class='section'> instead.
Diffstat (limited to 'user_oauth')
-rw-r--r--user_oauth/templates/settings.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/user_oauth/templates/settings.php b/user_oauth/templates/settings.php
index f3ff68cd7..fefdaf9e8 100644
--- a/user_oauth/templates/settings.php
+++ b/user_oauth/templates/settings.php
@@ -1,8 +1,8 @@
<form id="user_oauth">
- <fieldset class="personalblock">
- <strong>OAuth</strong><br />
+ <div class="section">
+ <h2>OAuth</h2><br />
<input type="text" name="introspectionEndpoint" id="introspectionEndpoint" value="<?php p($_['introspectionEndpoint']); ?>" placeholder="<?php p($l->t('Introspection endpoint'));?>" />
<br />
- <span class="msg">Provide the OAuth 2.0 Authorization Server introspection endpoint here.</span>
- </fieldset>
+ <span class="msg"><?php p($l->t('Provide the OAuth 2.0 Authorization Server introspection endpoint here.'));?></span>
+ </div>
</form>