[Slim-Checkins] r8869 - /trunk/server/Slim/Web/Graphics.pm

dsully at svn.slimdevices.com dsully at svn.slimdevices.com
Tue Aug 8 13:32:15 PDT 2006


Author: dsully
Date: Tue Aug  8 13:32:15 2006
New Revision: 8869

URL: http://svn.slimdevices.com?rev=8869&view=rev
Log:
Bug: N/A
Description: Fix uninitialized warning.

Modified:
    trunk/server/Slim/Web/Graphics.pm

Modified: trunk/server/Slim/Web/Graphics.pm
URL: http://svn.slimdevices.com/trunk/server/Slim/Web/Graphics.pm?rev=8869&r1=8868&r2=8869&view=diff
==============================================================================
--- trunk/server/Slim/Web/Graphics.pm (original)
+++ trunk/server/Slim/Web/Graphics.pm Tue Aug  8 13:32:15 2006
@@ -81,7 +81,7 @@
 
 	if (blessed($obj) && $obj->can('coverArt')) {
 
-		$cacheKey = "$trackid-$resizeMode-$requestedWidth-$requestedHeight-$requestedBackColour";	
+		$cacheKey = join('-', $trackid, $resizeMode, $requestedWidth, $requestedHeight, $requestedBackColour);
 
 		$::d_artwork && msg("  artwork cache key: $cacheKey\n");
 



More information about the checkins mailing list