From ee64379cf4c093d589502e72036759e66671cac7 Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Sun, 23 Dec 2007 23:57:36 +0000 Subject: fixed an issue with the flash player when the play method was not default --- lib/class/stream.class.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/class') diff --git a/lib/class/stream.class.php b/lib/class/stream.class.php index 6d620f03..7a925daa 100644 --- a/lib/class/stream.class.php +++ b/lib/class/stream.class.php @@ -728,6 +728,9 @@ class Stream { // If this wasn't ajax included run away if (AJAX_INCLUDE != '1') { return false; } + // If we're doin the flash magic then run away as well + if ($GLOBALS['user']->prefs['play_type'] == 'xspf_player') { return false; } + switch ($GLOBALS['user']->prefs['playlist_method']) { default: case 'clear': -- cgit