summaryrefslogtreecommitdiffstats
path: root/song.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-10-29 19:16:56 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-10-29 19:16:56 +0000
commitc63317e869d1da28ab3a429bf4116446f9bcbc64 (patch)
tree6b717f2dae35ddd22bcd7755c3c0f9d453a3acd0 /song.php
parent98c4a922621fd2df37a1204c09b06594f20536ea (diff)
downloadampache-c63317e869d1da28ab3a429bf4116446f9bcbc64.tar.gz
ampache-c63317e869d1da28ab3a429bf4116446f9bcbc64.tar.bz2
ampache-c63317e869d1da28ab3a429bf4116446f9bcbc64.zip
some initial flash player integration from forums and some bug fixes on most popular
Diffstat (limited to 'song.php')
-rw-r--r--song.php19
1 files changed, 6 insertions, 13 deletions
diff --git a/song.php b/song.php
index a8362961..ef3d447a 100644
--- a/song.php
+++ b/song.php
@@ -5,9 +5,8 @@
All rights reserved.
This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
+ modify it under the terms of the GNU General Public License v2
+ as published by the Free Software Foundation
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,16 +18,6 @@
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-
-/*!
- @header Song Document
- @discussion Actually play files from albums, artists or just given
- a bunch of id's.
- Special thanx goes to Mike Payson and Jon Disnard for the means
- to do this.
- FIXME: don't get me started... :(
-*/
-
require('lib/init.php');
/* If we are running a demo, quick while you still can! */
@@ -59,6 +48,10 @@ switch ($action) {
$song_ids = $_POST['song'];
}
break;
+ /* This is run if we need to gather info based on a tmp playlist */
+ case 'tmp_playlist':
+
+ break;
case 'single_song':
$song_ids[] = scrub_in($_REQUEST['song_id']);
break;