Comment 1 for bug 360411

Revision history for this message
Kristoffer Bergström (kabtoffe) wrote :

narrowed down the problem to the following line in /usr/share/ampache/www/lib/class/stream.class.php

$song_file = escapeshellarg($song->file);

Changing this to $song_file = $song->file; almost works, but not for paths with spaces (which is most of them). Besides it would have been a workaround at best.

I'll continue googling...