[Slim-Checkins] r11395 - /branches/6.5/server/Slim/Control/Commands.pm

mherger at svn.slimdevices.com mherger at svn.slimdevices.com
Sat Feb 10 23:44:20 PST 2007


Author: mherger
Date: Sat Feb 10 23:44:20 2007
New Revision: 11395

URL: http://svn.slimdevices.com?rev=11395&view=rev
Log:
Bug: N/A
Description: Global symbol "@rawtracks" requires explicit package name 

Modified:
    branches/6.5/server/Slim/Control/Commands.pm

Modified: branches/6.5/server/Slim/Control/Commands.pm
URL: http://svn.slimdevices.com/branches/6.5/server/Slim/Control/Commands.pm?rev=11395&r1=11394&r2=11395&view=diff
==============================================================================
--- branches/6.5/server/Slim/Control/Commands.pm (original)
+++ branches/6.5/server/Slim/Control/Commands.pm Sat Feb 10 23:44:20 2007
@@ -1256,7 +1256,7 @@
 		}
 
 		# find the tracks
-		@rawtracks = Slim::Schema->search('Track', { 'id' => { 'in' => \@track_ids } })->all;
+		my @rawtracks = Slim::Schema->search('Track', { 'id' => { 'in' => \@track_ids } })->all;
 
 		# sort them back!
 		@tracks = sort { $track_ids_order{$a->id()} <=> $track_ids_order{$b->id()} } @rawtracks;



More information about the checkins mailing list