diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-31 16:00:03 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-31 16:00:03 -0500 |
commit | 4acffa613dc6ac23a7a92f26555832165a7e6ef6 (patch) | |
tree | 2762d4495d018eca5794571a6a5fc5990ed37a14 | |
parent | 0cf02f8590f8f011e6015785cf731a706698cdd5 (diff) | |
download | ampache-4acffa613dc6ac23a7a92f26555832165a7e6ef6.tar.gz ampache-4acffa613dc6ac23a7a92f26555832165a7e6ef6.tar.bz2 ampache-4acffa613dc6ac23a7a92f26555832165a7e6ef6.zip |
Add $target back
No being lazy for us. interfaces are interfaces, not abstract classes.
-rw-r--r-- | lib/class/media.interface.php | 2 | ||||
-rw-r--r-- | lib/class/radio.class.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/class/media.interface.php b/lib/class/media.interface.php index 12ab6813..f1f794f8 100644 --- a/lib/class/media.interface.php +++ b/lib/class/media.interface.php @@ -59,7 +59,7 @@ interface media { * parameter can be used to request a specific format instead of the * default from the configuration file. */ - public function get_transcode_settings(); + public function get_transcode_settings($target = null); /** * has_flag diff --git a/lib/class/radio.class.php b/lib/class/radio.class.php index 101f60f7..864a7518 100644 --- a/lib/class/radio.class.php +++ b/lib/class/radio.class.php @@ -212,7 +212,7 @@ class Radio extends database_object implements media { * * This will probably never be implemented */ - public function get_transcode_settings() { + public function get_transcode_settings($target = null) { return false; } |