diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-02-04 18:05:40 -0500 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-02-04 18:05:40 -0500 |
commit | 85de2f7bc4d00a4a4711cd91224553beae411532 (patch) | |
tree | af27726038dea7a4c436f58780bfe83a29f500ad /IkiWiki/Plugin | |
parent | 6fba45bb563aad612c48d90f1f744f91f5b79dd3 (diff) |
the old code worked, suprisingly, but I prefer this form
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/teximg.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/teximg.pm b/IkiWiki/Plugin/teximg.pm index 5f9589fdd..5dff5feef 100644 --- a/IkiWiki/Plugin/teximg.pm +++ b/IkiWiki/Plugin/teximg.pm @@ -82,8 +82,8 @@ sub create ($$$) { #{{{ $logurl = urlto($imglog, $params->{destpage}); } else { - $imgurl="$params->{page}/$digest.png"; - $logurl="$params->{page}/$digest.log"; + $imgurl=$params->{page}."/$digest.png"; + $logurl=$params->{page}."/$digest.log"; } if (-e "$config{destdir}/$imglink" || |