aboutsummaryrefslogtreecommitdiffstats
path: root/addon
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-05-30 23:12:39 -0700
committerFriendika <info@friendika.com>2011-05-30 23:12:39 -0700
commit1d2cc5c5ad47e969ca4b6dd0f0eee4a4e5ab5663 (patch)
tree627a72a75068187867961c0616ca6b3c25650055 /addon
parentf95ea14478e256d7eb331385746f83532d78d84a (diff)
downloadvolse-hubzilla-1d2cc5c5ad47e969ca4b6dd0f0eee4a4e5ab5663.tar.gz
volse-hubzilla-1d2cc5c5ad47e969ca4b6dd0f0eee4a4e5ab5663.tar.bz2
volse-hubzilla-1d2cc5c5ad47e969ca4b6dd0f0eee4a4e5ab5663.zip
put oembed settings into a .settings-block div for consistency
Diffstat (limited to 'addon')
-rw-r--r--addon/oembed/oembed.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/addon/oembed/oembed.php b/addon/oembed/oembed.php
index f1fb27986..a0a0239aa 100644
--- a/addon/oembed/oembed.php
+++ b/addon/oembed/oembed.php
@@ -34,9 +34,10 @@ function oembed_settings(&$a,&$o) {
if(! local_user())
return;
$uofy = get_pconfig(local_user(), 'oembed', 'use_for_youtube' );
-
- $o .='<h3 class="settings-heading">OEmbed</h3>';
+
$o.='
+ <div class="settings-block">
+ <h3 class="settings-heading">OEmbed</h3>
<div id="settings-username-wrapper">
<label for="oembed_use_for_youtube">'
.t('Use OEmbed for YouTube videos: ')
@@ -47,6 +48,7 @@ function oembed_settings(&$a,&$o) {
<div id="settings-username-end"></div>
<div class="settings-submit-wrapper">
<input type="submit" value="'.t('Submit').'" class="settings-submit" name="oembed-submit">
+ </div>
</div>';
}