summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-07-14 12:12:41 +0000
committerDries Buytaert <dries@buytaert.net>2001-07-14 12:12:41 +0000
commitb99d4d7a424bf52bc7a4e7908e1d0d1cfd0c7b87 (patch)
treec15103816ada4747acb83bdc3f3e861d25278f48 /themes
parente62e3417f7cbdbb1206f20f2f663b606a2b7b12a (diff)
downloadbrdo-b99d4d7a424bf52bc7a4e7908e1d0d1cfd0c7b87.tar.gz
brdo-b99d4d7a424bf52bc7a4e7908e1d0d1cfd0c7b87.tar.bz2
- theme system:
+ added $theme->images() - blog.module: + improved user-friendliness and rewrote most of the output routines + made quoted text /italic/ by default + integrated discussion system like it should + ... - marvin.theme: + small visual improvements
Diffstat (limited to 'themes')
-rw-r--r--themes/marvin/marvin.theme6
1 files changed, 5 insertions, 1 deletions
diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme
index c1ed292eb..d579aa9b1 100644
--- a/themes/marvin/marvin.theme
+++ b/themes/marvin/marvin.theme
@@ -129,6 +129,10 @@
print "</table>\n";
print "<br />\n\n";
}
+
+ function links($links, $delimiter = " &middot ") {
+ return implode($delimiter, $links);
+ }
function footer() {
?>
@@ -143,7 +147,7 @@
<tr>
<td align="center" colspan="2">
<?php
- print "<p><small>[ ". $this->links(link_page()) ." ]</small></p><p>". variable_get("site_footer", "") ."</p>\n";
+ print "<p><small>". $this->links(link_page()) ."</small></p><p>". variable_get("site_footer", "") ."</p>\n";
?>
</td>
</tr>