diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 04:07:17 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 04:07:17 +0000 |
commit | bd0008f450fe55b28590e209917da8a61ebdc373 (patch) | |
tree | 46888d1841923ae1f8fb5039f650e776a0b36229 /modules | |
parent | ded54786a5d1f24d21b2ffe1ec9d2d2b664a8c54 (diff) | |
download | ampache-bd0008f450fe55b28590e209917da8a61ebdc373.tar.gz ampache-bd0008f450fe55b28590e209917da8a61ebdc373.tar.bz2 ampache-bd0008f450fe55b28590e209917da8a61ebdc373.zip |
quick commit so I can build a nightly
Diffstat (limited to 'modules')
-rw-r--r-- | modules/lib.php | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/modules/lib.php b/modules/lib.php index 8dcbb873..6023dbf6 100644 --- a/modules/lib.php +++ b/modules/lib.php @@ -383,47 +383,6 @@ function get_playlist_track_from_song ( $playlist_id, $song_id ) { } } -//FIXME: Pull this and put it in a template -function show_playlist_create () { - - $web_path = conf('web_path'); - - print <<<ECHO -<form name="songs" method="post" action="$web_path/playlist.php"> -<table class="border"><tr class="table-header"><td colspan="2" align="center"> -ECHO; - -print _("Create a new playlist"); - print <<<ECHO - </td> - </tr> - <tr class="even"> - <td align="left"> Name: </td> - <td align="left"><input type="text" name="playlist_name" size="20" /></td> - </tr> - <tr class="odd"> - <td align="left"> Type: </td> - <td align="left"> - <select name="type"> - <option value="private"> Private </option> - <option value="public"> Public </option> - </select> - </td> - </tr> - <tr class="even"> - <td align="left"> </td> - <td align="left"> - <input type="submit" name="action" value="Create" /> - <input type="reset" name="Reset" /> - </td> - </tr> -</table> -</form> - -ECHO; - -} - /** * show_playlist_dropdown * Hacking this for now... will fix tomorrow evening |