Index: docroot/download.tt =================================================================== --- docroot/download.tt (revision 7655) +++ docroot/download.tt (working copy) @@ -44,7 +44,7 @@
- [% "Installing Squeezebox Server" | cms('INSTALLATION-TIPS') %] + [% "Installing Squeezebox Server" | cms(install_instructions) %]
Index: lib/SDI/SqueezeNetwork/Controller/Download.pm =================================================================== --- lib/SDI/SqueezeNetwork/Controller/Download.pm (revision 7655) +++ lib/SDI/SqueezeNetwork/Controller/Download.pm (working copy) @@ -26,7 +26,8 @@ # verify the download url elsif (my $url = $downloads->{$download}) { - $c->stash->{download_url} = $url->{url}; + $c->stash->{download_url} = $url->{url}; + $c->stash->{install_instructions} = $url->{url} =~ /readynas/i ? 'INSTALLATION-TIPS-READYNAS' : 'INSTALLATION-TIPS'; } }