diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-12-17 19:35:32 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-12-17 19:35:32 +0000 |
commit | 492a04db28731df4e9c1b80735397b9c61410b08 (patch) | |
tree | 47399a0a8156b93b846b9db67cd70c8199a0a51a /playlist.php | |
parent | 36b2bc803d20e93a58f1502684ba14ccbe144fb1 (diff) | |
download | ampache-492a04db28731df4e9c1b80735397b9c61410b08.tar.gz ampache-492a04db28731df4e9c1b80735397b9c61410b08.tar.bz2 ampache-492a04db28731df4e9c1b80735397b9c61410b08.zip |
fixed coloring on edit box in playlist
Diffstat (limited to 'playlist.php')
-rw-r--r-- | playlist.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/playlist.php b/playlist.php index 912058cb..9855f8c6 100644 --- a/playlist.php +++ b/playlist.php @@ -73,6 +73,8 @@ $playlist = new Playlist(scrub_in($_REQUEST['playlist_id'])); /* First Switch */ // Have to handle this here, since we use this file // for playback of the "Play Selected Stuff" and display (for now) +// and this has to be done with a header redirection before the actuall top +// of the page is shown switch ($action) { case _("Flag Selected"): require_once(conf('prefix').'/lib/flag.php'); @@ -175,7 +177,6 @@ switch($action) { case 'Edit': show_playlist_edit($playlist); break; - case 'new': show_playlist_create(); break; |