X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2Findex.html;h=e61f14619bb8bf0642585e64ce5e0cf8a0ef94c4;hp=acf6c129b69e4a4d2dc78b3ab17a442aacf4db51;hb=187086c479a09629b7d180eec513fb7657f4e291;hpb=de9d037528895f7151a9aead6724ce2df95f9586 diff --git a/rt/share/html/index.html b/rt/share/html/index.html index acf6c129b..e61f14619 100755 --- a/rt/share/html/index.html +++ b/rt/share/html/index.html @@ -30,7 +30,7 @@ If you need commercial support, please contact us at sales@bestpractical.com. %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2018 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) @@ -90,6 +90,9 @@ $m->callback( ARGSRef => \%ARGS, results => \@results, CallbackName => 'Initial' skip_create => \$skip_create ); if ( $ARGS{'QuickCreate'} ) { + + ProcessAttachments(ARGSRef => \%ARGS); + my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($ARGS{Queue}) or Abort(loc("Queue could not be loaded.")); @@ -106,13 +109,15 @@ if ( $ARGS{'QuickCreate'} ) { my $created; if ( $ValidCFs && !$skip_create ) { my ($t, $msg) = CreateTicket( - Queue => $ARGS{'Queue'}, - Owner => $ARGS{'Owner'}, - Status => $ARGS{'Status'}, - # yes! it's Requestors, not Requestor - Requestors => $ARGS{'Requestors'}, - Content => $ARGS{'Content'}, - Subject => $ARGS{'Subject'}); + Queue => $ARGS{'Queue'}, + Owner => $ARGS{'Owner'}, + Status => $ARGS{'Status'}, + # yes! it's Requestors, not Requestor + Requestors => $ARGS{'Requestors'}, + Content => $ARGS{'Content'}, + Subject => $ARGS{'Subject'}, + Token => $ARGS{'Token'}, + ); push @results, $msg; if ( $t && $t->Id ) {