[Rt-commit] rt branch, autocomplete-links, updated. rt-3.9.7-1165-gf91735c
Shawn Moore
sartak at bestpractical.com
Tue Jan 4 18:13:46 EST 2011
The branch, autocomplete-links has been updated
via f91735c20ef85f184613e7056e47b901704c8390 (commit)
from 57a6f9ca1c7754e47fbe366ee9e72f82221b7c7d (commit)
Summary of changes:
share/html/Helpers/Autocomplete/Tickets | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit f91735c20ef85f184613e7056e47b901704c8390
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Tue Jan 4 18:13:33 2011 -0500
Use STARTSWITH for Ticket id
diff --git a/share/html/Helpers/Autocomplete/Tickets b/share/html/Helpers/Autocomplete/Tickets
index 49c8bb6..190cca6 100644
--- a/share/html/Helpers/Autocomplete/Tickets
+++ b/share/html/Helpers/Autocomplete/Tickets
@@ -83,7 +83,7 @@ my $CurrentUser = $session{'CurrentUser'};
$m->abort unless $CurrentUser->Privileged;
my %fields = %{ RT->Config->Get('TicketAutocompleteFields')
- || { id => '=' } };
+ || { id => 'STARTSWITH' } };
my $tickets = RT::Tickets->new( $CurrentUser );
$tickets->RowsPerPage( $max );
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list