X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FREST%2F1.0%2FForms%2Fgroup%2Fns;h=eaaaa9fc0e47b2e759121bb0164f5502614e4e7f;hb=187086c479a09629b7d180eec513fb7657f4e291;hp=ec85faeb7dfb32331e03052f27f5678b1e6ba0fe;hpb=fc6209f398899f0211cfcedeb81a3cd65e04a941;p=freeside.git diff --git a/rt/share/html/REST/1.0/Forms/group/ns b/rt/share/html/REST/1.0/Forms/group/ns index ec85faeb7..eaaaa9fc0 100644 --- a/rt/share/html/REST/1.0/Forms/group/ns +++ b/rt/share/html/REST/1.0/Forms/group/ns @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2018 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) @@ -53,8 +53,8 @@ $id <%perl> use RT::Groups; -my $groups = new RT::Groups $session{CurrentUser}; -$groups->Limit(FIELD => 'Name', OPERATOR => '=', VALUE => $id); +my $groups = RT::Groups->new($session{CurrentUser}); +$groups->Limit(FIELD => 'Name', OPERATOR => '=', VALUE => $id, CASESENSITIVE => 0); if ($groups->Count == 0) { return (0, "No group named $id exists."); }