diff options
-rw-r--r-- | lib/class/stream.class.php | 2 | ||||
-rw-r--r-- | localplay.php | 3 | ||||
-rw-r--r-- | themes/greysme/templates/default.css | 8 |
3 files changed, 10 insertions, 3 deletions
diff --git a/lib/class/stream.class.php b/lib/class/stream.class.php index ffd4be6f..96749e15 100644 --- a/lib/class/stream.class.php +++ b/lib/class/stream.class.php @@ -512,7 +512,7 @@ class Stream { * auto_init * This is called on class load it sets the session */ - public static function auto_init() { + public static function _auto_init() { // Generate the session ID self::$session = md5(uniqid(rand(), true));; diff --git a/localplay.php b/localplay.php index c808270c..8ab9ca1c 100644 --- a/localplay.php +++ b/localplay.php @@ -47,6 +47,9 @@ switch ($_REQUEST['action']) { $localplay = new Localplay($GLOBALS['user']->prefs['localplay_controller']); $localplay->add_instance($_POST); break; + case 'show_songs': + + break; case 'delete_song': $song_id = scrub_in($_REQUEST['song_id']); $songs = array($song_id); diff --git a/themes/greysme/templates/default.css b/themes/greysme/templates/default.css index c509423a..e7d11213 100644 --- a/themes/greysme/templates/default.css +++ b/themes/greysme/templates/default.css @@ -390,8 +390,12 @@ h3#content_title span {} /* Doesn't exist anymore (?) */ color:#111;
}
-/* SIDEBAR : Search */
-/********************/
+/* SIDEBAR : Localplay */
+/***********************/
+
+.active_instance {
+
+}
/* SIDEBAR : Preferences */
/*************************/
|