diff options
Diffstat (limited to 'rt/share/html/REST/1.0/Forms/group/ns')
-rw-r--r-- | rt/share/html/REST/1.0/Forms/group/ns | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rt/share/html/REST/1.0/Forms/group/ns b/rt/share/html/REST/1.0/Forms/group/ns index c993db8b6..7be8eaf92 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-2014 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC %# <sales@bestpractical.com> %# %# (Except where explicitly superseded by other copyright notices) @@ -54,7 +54,7 @@ $id use RT::Groups; my $groups = RT::Groups->new($session{CurrentUser}); -$groups->Limit(FIELD => 'Name', OPERATOR => '=', VALUE => $id); +$groups->Limit(FIELD => 'Name', OPERATOR => '=', VALUE => $id, CASESENSITIVE => 0); if ($groups->Count == 0) { return (0, "No group named $id exists."); } |