issue 754 fixed new group error

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9915 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
devjin 2011-12-08 05:09:47 +00:00
parent 6a978a570d
commit e12c890f35
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ jQuery(function ($){
var group_srl = $(event.target).attr('href').substr(1);
if(!confirm(xe.lang.groupDeleteMessage)) return;
if (group_srl.indexOf("new") > 0){
if (group_srl.indexOf("new") >= 0){
$target.remove();
return;
}