Index: HTML/EN/hreftemplate
===================================================================
--- HTML/EN/hreftemplate (revision 7169)
+++ HTML/EN/hreftemplate (working copy)
@@ -43,8 +43,8 @@
[%# img tag for album thumbnail in the now playing status context %]
[% BLOCK statusImg -%][% IF NOT height; height = 100; END %][% IF NOT width; width = height; END %]
- [% "
" -%]
[%- END %]
@@ -160,7 +160,7 @@
[%# img tag for album thumbnail in browse artwork context %]
[% BLOCK thumbnailItemImg -%][% IF NOT height; height = 100; END %]
- [%- "
" -%]
[%- END %]
Index: Slim/Web/HTTP.pm
===================================================================
--- Slim/Web/HTTP.pm (revision 7169)
+++ Slim/Web/HTTP.pm (working copy)
@@ -671,6 +671,10 @@
$params->{'nosetup'} = 1 if $::nosetup;
$params->{'noserver'} = 1 if $::noserver;
+ if ($Slim::Web::Graphics::canUseGD) {
+ $params->{'canUseGD'} = 1;
+ }
+
my $path = $params->{"path"};
my $type = Slim::Music::Info::typeFromSuffix($path, 'htm');
Index: Slim/Web/Graphics.pm
===================================================================
--- Slim/Web/Graphics.pm (revision 7169)
+++ Slim/Web/Graphics.pm (working copy)
@@ -8,7 +8,7 @@
# art resizing support by using GD, requires JPEG support built in
-my $canUseGD = eval {
+our $canUseGD = eval {
require GD;
if (GD::Image->can('jpeg')) {
return 1;