diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-02-08 01:49:56 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-02-08 01:49:56 +0000 |
commit | db464555820830458e883c962f0b9482d177564b (patch) | |
tree | 8a800debf59b2b01a9791479f63f618698cda94b /lib/class/song.class.php | |
parent | 00f3ef062c9187b5c75f1a2b0c553f139e83ee8d (diff) | |
download | ampache-db464555820830458e883c962f0b9482d177564b.tar.gz ampache-db464555820830458e883c962f0b9482d177564b.tar.bz2 ampache-db464555820830458e883c962f0b9482d177564b.zip |
fixed missing reference to new variable name when downsampling
Diffstat (limited to 'lib/class/song.class.php')
-rw-r--r-- | lib/class/song.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/song.class.php b/lib/class/song.class.php index dbe3c05a..8bb2cd18 100644 --- a/lib/class/song.class.php +++ b/lib/class/song.class.php @@ -962,7 +962,7 @@ class Song extends database_object implements media { * we can't use this->type because its been formated for the * downsampling */ - function stream_cmd() { + public function stream_cmd() { // Find the target for this transcode $conf_type = 'transcode_' . $this->type . '_target'; |