diff options
author | Kathryn Andersen <perlkat@katspace.org> | 2014-06-29 17:21:18 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2017-09-15 20:43:44 +0100 |
commit | 46a465ce746b3957f5cf83cfd7465c18b8ba6455 (patch) | |
tree | 3e5e6c122051061cf08f8582549b953638004a3e | |
parent | 8c1beee2ac1cb9b0abe33d1cce7617707af3f063 (diff) | |
download | ikiwiki-46a465ce746b3957f5cf83cfd7465c18b8ba6455.tar ikiwiki-46a465ce746b3957f5cf83cfd7465c18b8ba6455.tar.gz |
album: allow thumbnails to not be 96x96
[taken from a diff on the discussion page -smcv]
-rw-r--r-- | IkiWiki/Plugin/album.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/album.pm b/IkiWiki/Plugin/album.pm index bade7c43b..f42078b8b 100644 --- a/IkiWiki/Plugin/album.pm +++ b/IkiWiki/Plugin/album.pm @@ -499,6 +499,7 @@ sub pagetemplate (@) { my $viewer = $params{page}; my $album = $pagestate{$viewer}{album}{album}; my $image = $pagestate{$viewer}{album}{image}; + my $thumbnailsize = $pagestate{$album}{album}{thumbnailsize}; return unless defined $album; return unless defined $image; @@ -510,7 +511,7 @@ sub pagetemplate (@) { if ($template->query(name => 'thumbnail')) { $template->param(thumbnail => - thumbnail($viewer, $params{destpage})); + thumbnail($viewer, $params{destpage}, $thumbnailsize)); } if (IkiWiki::isinlinableimage($image) && ($template->query(name => 'imagewidth') || |