[Slim-Checkins] r9252 - in /trunk/server: Changelog6.html Slim/Buttons/Common.pm

adrian at svn.slimdevices.com adrian at svn.slimdevices.com
Tue Aug 29 12:37:35 PDT 2006


Author: adrian
Date: Tue Aug 29 12:37:33 2006
New Revision: 9252

URL: http://svn.slimdevices.com?rev=9252&view=rev
Log:
Bug: 4015
Description: Web setup code alters the string tokens in the
screensaver hash.  Make a copy of hash before for returning ref to it.

Modified:
    trunk/server/Changelog6.html
    trunk/server/Slim/Buttons/Common.pm

Modified: trunk/server/Changelog6.html
URL: http://svn.slimdevices.com/trunk/server/Changelog6.html?rev=9252&r1=9251&r2=9252&view=diff
==============================================================================
--- trunk/server/Changelog6.html (original)
+++ trunk/server/Changelog6.html Tue Aug 29 12:37:33 2006
@@ -526,6 +526,7 @@
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=3971">#3971</a> - New feature: Perl and mysql version info display on server settings screen.</li>
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=3980">#3980</a> - Initial WMA stream request sometimes gets truncated</li>
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4003">#4003</a> - DAC mode should be called &quot;Audio Source&quot;</li>
+		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4015">#4015</a> - Web setup corrupts screensaver settings in player UI</li>
 	</ul>
 </ul>
 

Modified: trunk/server/Slim/Buttons/Common.pm
URL: http://svn.slimdevices.com/trunk/server/Slim/Buttons/Common.pm?rev=9252&r1=9251&r2=9252&view=diff
==============================================================================
--- trunk/server/Slim/Buttons/Common.pm (original)
+++ trunk/server/Slim/Buttons/Common.pm Tue Aug 29 12:37:33 2006
@@ -172,7 +172,10 @@
 =cut
 
 sub hash_of_savers {
-	return \%savers;
+
+	my %saversCopy = %savers;
+
+	return \%saversCopy;
 }
 
 =head2 addMode ( )



More information about the checkins mailing list