aboutsummaryrefslogtreecommitdiffstats
path: root/admin/cat_list.php
diff options
context:
space:
mode:
authorgweltas <gweltas@piwigo.org>2004-11-18 15:17:33 +0000
committergweltas <gweltas@piwigo.org>2004-11-18 15:17:33 +0000
commitaf0b3d5f57ab9b065a5be5cf1120eccd45ea6cf7 (patch)
tree367119bffc517022b543098dcf68615373277aa9 /admin/cat_list.php
parentf20efb0cfa8f792808cc85266563fef708b7b9a5 (diff)
Categories management icon update
git-svn-id: http://piwigo.org/svn/trunk@608 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/cat_list.php')
-rw-r--r--admin/cat_list.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/cat_list.php b/admin/cat_list.php
index 0c85eebc9..639a74ce6 100644
--- a/admin/cat_list.php
+++ b/admin/cat_list.php
@@ -46,7 +46,7 @@ if (isset($_GET['delete']) and is_numeric($_GET['delete']))
$to_delete_categories = array();
array_push($to_delete_categories,$_GET['delete']);
delete_categories($to_delete_categories);
- array_push($infos, $lang['cat_list_virtual_category_deleted']);
+ array_push($infos, $lang['cat_virtual_deleted']);
}
// request to add a virtual category
else if (isset($_POST['submit']))
@@ -100,7 +100,7 @@ UPDATE '.CATEGORIES_TABLE.'
WHERE id = '.$my_id.'
;';
pwg_query($query);
- array_push($infos, $lang['cat_list_virtual_category_added']);
+ array_push($infos, $lang['cat_virtual_added']);
}
}
// +-----------------------------------------------------------------------+