diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-11-26 14:57:52 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-11-26 14:58:35 -0500 |
commit | 2255a6a0bba10eece24304f64ec8329068e8bf07 (patch) | |
tree | d8722f9dc0a261c9b99773ac68321b0b364c76d5 /IkiWiki.pm | |
parent | 268a2dd54cd47d6ec39c22d61baa5f6f9d40b7f5 (diff) | |
download | ikiwiki-2255a6a0bba10eece24304f64ec8329068e8bf07.tar ikiwiki-2255a6a0bba10eece24304f64ec8329068e8bf07.tar.gz |
calendar: Add title attributes for all links in the calendars.
Diffstat (limited to 'IkiWiki.pm')
-rw-r--r-- | IkiWiki.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index 611ba6f65..99d5724eb 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -1083,7 +1083,7 @@ sub htmllink ($$$;@) { my @attrs; foreach my $attr (qw{rel class title}) { if (defined $opts{$attr}) { - push @attrs, " $attr=\"".$opts{attr}.'"'; + push @attrs, " $attr=\"$opts{$attr}\""; } } |