[Rt-commit] rt branch, master, updated. rt-4.2.3-34-g2d65cfc

Alex Vandiver alexmv at bestpractical.com
Wed Apr 16 16:24:16 EDT 2014


The branch, master has been updated
       via  2d65cfc2a5aa063f51fe14fcec1f0c06097902d8 (commit)
      from  ee20594b63b2bbc71dd1d538e70f55c4bfd21568 (commit)

Summary of changes:
 share/html/Ticket/Create.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

- Log -----------------------------------------------------------------
commit 2d65cfc2a5aa063f51fe14fcec1f0c06097902d8
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Wed Apr 16 15:30:57 2014 -0400

    Show queue name in title of ticket creation page
    
    This makes the chosen queue much more salient.  Fixes I#18369.

diff --git a/share/html/Ticket/Create.html b/share/html/Ticket/Create.html
index 57e66df..b7e18c3 100644
--- a/share/html/Ticket/Create.html
+++ b/share/html/Ticket/Create.html
@@ -368,11 +368,11 @@ if ($CloneTicket) {
 
 my @results;
 
-my $title = loc("Create a new ticket");
-
 my $QueueObj = RT::Queue->new($session{'CurrentUser'});
 $QueueObj->Load($Queue) || Abort(loc("Queue [_1] could not be loaded.", $Queue||''));
 
+my $title = loc("Create a new ticket in [_1]", $QueueObj->Name);
+
 $m->callback( QueueObj => $QueueObj, title => \$title, results => \@results, ARGSRef => \%ARGS );
 
 $m->scomp( '/Articles/Elements/SubjectOverride', ARGSRef => \%ARGS, QueueObj => $QueueObj, results => \@results );

-----------------------------------------------------------------------


More information about the rt-commit mailing list