diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/bookmarks.tpl.php | 2 | ||||
-rw-r--r-- | templates/bottom.inc.php | 1 | ||||
-rw-r--r-- | templates/sidebar.tpl.php | 5 |
3 files changed, 5 insertions, 3 deletions
diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index 09b1d95..a7cc184 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -115,8 +115,6 @@ switch(getSortOrder()) { $titleSort = 'title_asc'; break; } -//$dateSort = (getSortOrder()=='date_desc')? 'date_asc':'date_desc'; -//$titleSort = (getSortOrder()=='title_asc')? 'title_desc':'title_asc'; ?> <a href="?sort=<?php echo $dateSort ?>"><?php echo T_("Date").$dateArrow; ?></a><span> / </span> <a href="?sort=<?php echo $titleSort ?>"><?php echo T_("Title").$titleArrow; ?></a><span> / </span> <?php diff --git a/templates/bottom.inc.php b/templates/bottom.inc.php index 9fb2306..09d95c1 100644 --- a/templates/bottom.inc.php +++ b/templates/bottom.inc.php @@ -1,5 +1,6 @@ <!--following code is generated by templates/bottom.inc.php--> <div id="bottom"> +<?php echo $GLOBALS['footerMessage'].' ';?> <?php echo T_("Propulsed by "); echo "<a href=\"https://sourceforge.net/projects/semanticscuttle/\">SemanticScuttle</a>"; 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> |