From 1e4c2a5cafa6c1bd542bad043c1ae1fbbd77bbc8 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Fri, 26 Oct 2007 03:11:37 +0000 Subject: [PATCH] #1487 Incorrect dialog git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@43882 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- javascript/SecurityAdmin_left.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/SecurityAdmin_left.js b/javascript/SecurityAdmin_left.js index e5d61b66..3bd35c96 100755 --- a/javascript/SecurityAdmin_left.js +++ b/javascript/SecurityAdmin_left.js @@ -102,7 +102,7 @@ deletegroup = { if(deletegroup.selectedNodes[idx]) csvIDs += (csvIDs ? "," : "") + idx; } if(csvIDs) { - if(confirm("Do you really want to these groups?")) { + if(confirm("Do you really want to delete these groups?")) { $('deletegroup_options').elements.csvIDs.value = csvIDs; Ajax.SubmitForm('deletegroup_options', null, { @@ -123,7 +123,7 @@ deletegroup = { $('deletegroup').getElementsByTagName('button')[0].onclick(); } } else { - alert("Please select at least 1 group."); + alert("Please select at least one group."); } return false;