summaryrefslogtreecommitdiffstats
path: root/lib/class/random.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/class/random.class.php')
-rw-r--r--lib/class/random.class.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/class/random.class.php b/lib/class/random.class.php
index aa12ed9b..a4756db9 100644
--- a/lib/class/random.class.php
+++ b/lib/class/random.class.php
@@ -94,18 +94,18 @@ class Random implements media {
/**
* play_url
+ *
* This generates a random play url based on the passed type
* and returns it
*/
- public static function play_url($id,$sid='',$force_http='') {
-
+ public static function play_url($id) {
if (!$type = self::get_id_type($id)) {
return false;
}
$uid = $GLOBALS['user']->id;
- $url = Stream::get_base_url() . "random=1&type=$type&uid=$uid";
+ $url = Stream::get_base_url() . "type=song&random=1&random_type=$type&uid=$uid";
return $url;