diff options
-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': |