diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-04-29 13:05:21 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-04-29 15:18:24 -0400 |
commit | 323554838d3c07c3bf47ce9ae72fd870c6614e33 (patch) | |
tree | 246d61301faee1b9708b9b40700330219323ba1f | |
parent | df92e52dd3d118249c2adec9dd57dd61a53995b4 (diff) | |
download | ampache-323554838d3c07c3bf47ce9ae72fd870c6614e33.tar.gz ampache-323554838d3c07c3bf47ce9ae72fd870c6614e33.tar.bz2 ampache-323554838d3c07c3bf47ce9ae72fd870c6614e33.zip |
Correct debug output for Stream_Playlist adds
-rw-r--r-- | lib/class/stream_playlist.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/stream_playlist.class.php b/lib/class/stream_playlist.class.php index 653686e4..471188e9 100644 --- a/lib/class/stream_playlist.class.php +++ b/lib/class/stream_playlist.class.php @@ -99,7 +99,7 @@ class Stream_Playlist { private static function _media_to_urlarray($media) { $urls = array(); foreach($media as $medium) { - debug_event('stream_playlist', 'Adding ' . json_encode($media), 5); + debug_event('stream_playlist', 'Adding ' . json_encode($medium), 5); $url = array(); $type = $medium['object_type']; |