From ebdb7573bf4176b81264d2c66dd567fa3c3ee0bd Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Thu, 28 Sep 2006 05:39:50 +0000 Subject: fixed up localplay a little more, to the point of it basicly working... added check for mysql on installer langue page, tweaked some css as well --- localplay.php | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'localplay.php') diff --git a/localplay.php b/localplay.php index adf2c2c9..0f593946 100644 --- a/localplay.php +++ b/localplay.php @@ -60,6 +60,16 @@ switch ($action) { $body = ''; show_confirmation($title,$body,$url); break; + case 'repeat': + $localplay = init_localplay(); + $localplay->repeat(make_bool($_REQUEST['value'])); + require_once (conf('prefix') . '/templates/show_localplay.inc.php'); + break; + case 'random': + $localplay = init_localplay(); + $localplay->random(make_bool($_REQUEST['value'])); + require_once (conf('prefix') . '/templates/show_localplay.inc.php'); + break; default: require_once (conf('prefix') . '/templates/show_localplay.inc.php'); break; -- cgit