Skip to content

Commit

Permalink
Merge branch '4.2/empty-requestor-on-resubmit' into 4.2-trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
jibsheet committed Oct 22, 2014
2 parents 6f87970 + 4eee9f0 commit 31d5b4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion share/html/Ticket/Create.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
<&|/l&>Requestors</&>:
</td>
<td class="value" colspan="5">
<& /Elements/EmailInput, Name => 'Requestors', Size => undef, Default => $ARGS{Requestors} || $session{CurrentUser}->EmailAddress, AutocompleteMultiple => 1 &>
<& /Elements/EmailInput, Name => 'Requestors', Size => undef, Default => $ARGS{Requestors} // $session{CurrentUser}->EmailAddress, AutocompleteMultiple => 1 &>
% $m->callback( CallbackName => 'AfterRequestors', QueueObj => $QueueObj, ARGSRef => \%ARGS );
</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion share/html/m/ticket/create
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ $showrows->(
"/Elements/EmailInput",
Name => 'Requestors',
Size => '40',
Default => $ARGS{Requestors} || $session{CurrentUser}->EmailAddress
Default => $ARGS{Requestors} // $session{CurrentUser}->EmailAddress
),

loc("Cc") =>
Expand Down

0 comments on commit 31d5b4d

Please sign in to comment.