diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-04 20:09:11 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-04 20:09:11 +0000 |
commit | 99ed8eb9b0bb7f80bb12201c5231fe97c67cf452 (patch) | |
tree | 9a86254d605d0dfa25d2150cab83e4c0d91dbf50 | |
parent | f4780432a1c8e3efa75427463d74c8b8838e157b (diff) | |
download | ampache-99ed8eb9b0bb7f80bb12201c5231fe97c67cf452.tar.gz ampache-99ed8eb9b0bb7f80bb12201c5231fe97c67cf452.tar.bz2 ampache-99ed8eb9b0bb7f80bb12201c5231fe97c67cf452.zip |
fixed playlist delete issue
-rwxr-xr-x | docs/CHANGELOG | 2 | ||||
-rw-r--r-- | playlist.php | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG index 42faef18..4dad4337 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -4,6 +4,8 @@ -------------------------------------------------------------------------- v.3.3.3-Alpha2 + - Fixed issue with delete confirmation on playlist always being + yes, even if you click no. - Added more error checking to install, won't let you continue without a valid MySQL connection, rather then relying on the db_select() to fail diff --git a/playlist.php b/playlist.php index 042824f0..126b3a68 100644 --- a/playlist.php +++ b/playlist.php @@ -54,7 +54,7 @@ switch ($action) { /* Show Confirmation Question */ $message = _('Are you sure you want to delete this playlist') . " " . $playlist->name . "?"; - show_confirm_action($message,'playlist.php','action=delete_playlist&playlist_id=' . $playlist->id); + show_confirmation(_('Confirm Action'),$message,'/playlist.php',1); break; case 'add_to': case 'add to': |