summaryrefslogtreecommitdiffstatshomepage
path: root/templates/sidebar.tpl.php
diff options
context:
space:
mode:
authorGravatar mensonge2009-03-15 15:52:37 +0000
committerGravatar mensonge2009-03-15 15:52:37 +0000
commitd3642f6b0ed1ee5a7654fe7eff375ca1212c267d (patch)
tree08efea0013ae4755699594f3b740bcb2a76b7abe /templates/sidebar.tpl.php
parent0ea18f81edff9866d8b3d5a0c2394135e4af9560 (diff)
downloadscuttle-d3642f6b0ed1ee5a7654fe7eff375ca1212c267d.tar.gz
scuttle-d3642f6b0ed1ee5a7654fe7eff375ca1212c267d.zip
Interface Fix: add possible messages in configuration file for footer or sidebar
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@309 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/sidebar.tpl.php')
-rw-r--r--templates/sidebar.tpl.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/sidebar.tpl.php b/templates/sidebar.tpl.php
index ad5c74f..e823af5 100644
--- a/templates/sidebar.tpl.php
+++ b/templates/sidebar.tpl.php
@@ -6,11 +6,14 @@
<?php
+echo $GLOBALS['sidebarTopMessage'].' ';
$size = count($sidebar_blocks);
for ($i = 0; $i < $size; $i++) {
$this->includeTemplate('sidebar.block.'. $sidebar_blocks[$i]);
}
+
+echo $GLOBALS['sidebarBottomMessage'];
?>
-</div> \ No newline at end of file
+</div>