diff options
-rw-r--r-- | lib/class/stream.class.php | 2 | ||||
-rw-r--r-- | play/index.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/class/stream.class.php b/lib/class/stream.class.php index cc01ed94..3875da6b 100644 --- a/lib/class/stream.class.php +++ b/lib/class/stream.class.php @@ -855,7 +855,7 @@ class Stream { public static function get_base_url() { if (Config::get('require_session')) { - $session_string = 'sid=' . Stream::get_session() . '&'; + $session_string = 'ssid=' . Stream::get_session() . '&'; } $web_path = Config::get('web_path'); diff --git a/play/index.php b/play/index.php index 191492a6..6123e81e 100644 --- a/play/index.php +++ b/play/index.php @@ -33,7 +33,7 @@ ob_end_clean(); /* These parameters had better come in on the url. */ $uid = scrub_in($_REQUEST['uid']); $oid = $_REQUEST['song'] ? scrub_in($_REQUEST['song']) : scrub_in($_REQUEST['oid']); -$sid = scrub_in($_REQUEST['sid']); +$sid = scrub_in($_REQUEST['ssid']); $xml_rpc = scrub_in($_REQUEST['xml_rpc']); $video = make_bool($_REQUEST['video']); |