[Rt-commit] rt branch, 4.0/jumbo-autocomplete, updated. rt-4.0.2-40-g1cd9b65
Jason May
jasonmay at bestpractical.com
Thu Sep 1 18:35:12 EDT 2011
The branch, 4.0/jumbo-autocomplete has been updated
via 1cd9b652d62e46b1e0cf5e534ff49372a1307bc4 (commit)
from ba779b4b8bdb0c9f991bd0a9a1688d4899a25401 (commit)
Summary of changes:
share/html/Ticket/ModifyAll.html | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit 1cd9b652d62e46b1e0cf5e534ff49372a1307bc4
Author: Jason May <jasonmay at bestpractical.com>
Date: Thu Sep 1 18:34:09 2011 -0400
Check the config set in the session, not just global config
diff --git a/share/html/Ticket/ModifyAll.html b/share/html/Ticket/ModifyAll.html
index dbe217c..ec55358 100755
--- a/share/html/Ticket/ModifyAll.html
+++ b/share/html/Ticket/ModifyAll.html
@@ -188,7 +188,7 @@ unless ($OnlySearchForPeople or $OnlySearchForGroup or $ARGS{'AddMoreAttach'} )
my @owners =@{$ARGS{'Owner'}};
delete $ARGS{'Owner'};
foreach my $owner(@owners){
- if (RT->Config->Get('AutocompleteOwners')) {
+ if (RT->Config->Get('AutocompleteOwners', $session{'CurrentUser'})) {
$ARGS{'Owner'} = $owner unless ($Ticket->OwnerObj->Name eq $owner);
}
else {
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list