diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-31 14:55:55 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-31 14:58:15 -0500 |
commit | 923aa7f3e8edabf9d64783e960d5e0870fe4f6b0 (patch) | |
tree | 845b180cd2d2fb18c5868613d2edabd309ef3c7d | |
parent | de98b1b92d338c58a7e8fbf909d6c6664494e675 (diff) | |
download | ampache-923aa7f3e8edabf9d64783e960d5e0870fe4f6b0.tar.gz ampache-923aa7f3e8edabf9d64783e960d5e0870fe4f6b0.tar.bz2 ampache-923aa7f3e8edabf9d64783e960d5e0870fe4f6b0.zip |
Fix Random class
Random extends media, but the new abstract methods from the transcoding
rework hadn't been defined yet. Reported by deselby.
-rw-r--r-- | lib/class/random.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/class/random.class.php b/lib/class/random.class.php index c7204392..104432ff 100644 --- a/lib/class/random.class.php +++ b/lib/class/random.class.php @@ -442,8 +442,8 @@ class Random implements media { } // validate_type - public function native_stream() { } - public function stream_cmd() { } + public function get_stream_types() { } + public function get_transcode_settings() { } public function has_flag() { } public function format() { } |