[Rt-commit] rt branch, 3.9-trunk, updated. rt-3.8.8-188-gf806ada

Thomas Sibley trs at bestpractical.com
Thu Jul 29 14:57:16 EDT 2010


The branch, 3.9-trunk has been updated
       via  f806ada5cb9f1cb991347dc9c99fcd5b5bc43a71 (commit)
      from  c26119f0ef8e2b0f6739bf7617b13ab81269eff5 (commit)

Summary of changes:
 share/html/Search/Bulk.html |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

- Log -----------------------------------------------------------------
commit f806ada5cb9f1cb991347dc9c99fcd5b5bc43a71
Author: Thomas Sibley <trs at bestpractical.com>
Date:   Thu Jul 29 14:56:54 2010 -0400

    Fix some recently introduced Bulk Update regressions
    
    Commit c2cc19d365ee3ba575cd7644195177d3838ec119 left out quotes for the
    correspondence/comment subject and left a trailing space in the "Make
    subject" field.  The latter made every ticket's subject a single space
    when there was no default in %ARGS.

diff --git a/share/html/Search/Bulk.html b/share/html/Search/Bulk.html
index f892765..be06e38 100755
--- a/share/html/Search/Bulk.html
+++ b/share/html/Search/Bulk.html
@@ -109,7 +109,7 @@
 <td valign="top">
 <table>
 <tr><td class="label"> <&|/l&>Make subject</&>: </td>
-<td class="value"> <input name="Subject" size="20" value="<% $ARGS{Subject} || '' %> "/> </td></tr>
+<td class="value"> <input name="Subject" size="20" value="<% $ARGS{Subject} || '' %>"/> </td></tr>
 <tr><td class="label"> <&|/l&>Make priority</&>: </td>
 <td class="value"> <& /Elements/SelectPriority, Name => "Priority", Default => $ARGS{Priority} &> </td></tr>
 <tr><td class="label"> <&|/l&>Make queue</&>: </td>
@@ -141,7 +141,7 @@
 </select> 
 </td></tr>
 <tr><td align="right"><&|/l&>Subject</&>:</td><td> <input name="UpdateSubject"
-size="60" value=<% $ARGS{UpdateSubject} || "" %> /></td></tr>
+size="60" value="<% $ARGS{UpdateSubject} || "" %>" /></td></tr>
 % while (my $CF = $TxnCFs->Next()) {
 <tr>
 <td align="right"><% $CF->Name %>:</td>

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


More information about the Rt-commit mailing list