summaryrefslogtreecommitdiff
path: root/inc/html.php
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2011-09-19 01:22:32 +0100
committerAnika Henke <anika@selfthinker.org>2011-09-19 01:22:32 +0100
commit94add30314d7c0ed51fa78304ca342d0273b366c (patch)
treed3c7aad826d20b59d7335d5ad0c7bff6e1760914 /inc/html.php
parent699c5072ff1d0470c53299ab9a4dfbb4457e7843 (diff)
downloadrpg-94add30314d7c0ed51fa78304ca342d0273b366c.tar.gz
rpg-94add30314d7c0ed51fa78304ca342d0273b366c.tar.bz2
media manager: added a few newlines to the output
Diffstat (limited to 'inc/html.php')
-rw-r--r--inc/html.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/inc/html.php b/inc/html.php
index 8cf22de82..7f5a46b93 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -1830,14 +1830,13 @@ function html_flashobject($swf,$width,$height,$params=null,$flashvars=null,$atts
}
function html_tabs($tabs, $current_tab = null) {
- echo '<ul class="tabs">';
+ echo '<ul class="tabs">'.NL;
foreach($tabs as $id => $tab) {
html_tab($tab['href'], $tab['caption'], $id === $current_tab);
}
- echo '</ul>';
- echo '<div class="clearer"></div>';
+ echo '</ul>'.NL;
}
/**
* Prints a single tab
@@ -1859,7 +1858,7 @@ function html_tab($href, $caption, $selected=false) {
}
$tab .= hsc($caption)
. '</' . ($selected ? 'strong' : 'a') . '>'
- . '</li>';
+ . '</li>'.NL;
echo $tab;
}