summaryrefslogtreecommitdiffstats
path: root/admin/catalog.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/catalog.php')
-rw-r--r--admin/catalog.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/catalog.php b/admin/catalog.php
index d103ecae..9c3c9b1b 100644
--- a/admin/catalog.php
+++ b/admin/catalog.php
@@ -244,9 +244,9 @@ switch ($_REQUEST['action']) {
case 'show_delete_catalog':
/* Stop the demo hippies */
if (conf('demo_mode')) { break; }
-
+ $catalog = new Catalog($_REQUEST['catalog_id']);
$nexturl = conf('web_path') . '/admin/catalog.php?action=delete_catalog&catalog_id=' . scrub_out($_REQUEST['catalog_id']);
- show_confirmation(_('Delete Catalog'),_('Do you really want to delete this catalog?'),$nexturl,1);
+ show_confirmation(_('Delete Catalog'),_('Do you really want to delete this catalog?') . " -- $catalog->name ($catalog->path)",$nexturl,1);
break;
case 'show_customize_catalog':
include(conf('prefix') . '/templates/show_edit_catalog.inc.php');