summaryrefslogtreecommitdiff
path: root/modules/archive/archive.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-06-15 07:05:06 +0000
committerDries Buytaert <dries@buytaert.net>2003-06-15 07:05:06 +0000
commit19a073145692b335606c3aaa2f3dfcb979898d5e (patch)
tree96fbdcef19e33cf24d1bd2e3f53eda75c20d326d /modules/archive/archive.module
parent677dbd46e24df171a3820598594bfb1c7df9309a (diff)
downloadbrdo-19a073145692b335606c3aaa2f3dfcb979898d5e.tar.gz
brdo-19a073145692b335606c3aaa2f3dfcb979898d5e.tar.bz2
- Improvement: nicer, slightly larger arrows for the month selection within
the archive calendar. Patch #2 by Al.
Diffstat (limited to 'modules/archive/archive.module')
-rw-r--r--modules/archive/archive.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/archive/archive.module b/modules/archive/archive.module
index 0f7370daa..304446f4a 100644
--- a/modules/archive/archive.module
+++ b/modules/archive/archive.module
@@ -72,7 +72,7 @@ function archive_calendar($original = 0) {
$output .= "\n<!-- calendar -->\n";
$output .= "<div class=\"calendar\">";
$output .= "<table>\n";
- $output .= " <tr><td colspan=\"7\" class=\"header-month\">". l("&lt;", "archive/". date("Y/m/d", $prev)) ." ". date("F Y", $requested) ." ". ($nextmonth <= time() ? l("&gt;", "archive/". date("Y/m/d", $next)) : "&gt;") ."</td></tr>\n";
+ $output .= " <tr><td colspan=\"7\" class=\"header-month\">". l("&laquo;", "archive/". date("Y/m/d", $prev)) ." ". date("F Y", $requested) ." ". ($nextmonth <= time() ? l("&raquo;", "archive/". date("Y/m/d", $next)) : "&nbsp;") ."</td></tr>\n";
// First day of week (0 => Sunday, 1 => Monday, ...)
$weekstart = variable_get("default_firstday", 0);