[Rt-commit] rt branch, 4.0/bulk-update-datetime, created. rt-4.0.6-216-g595a79a

Alex Vandiver alexmv at bestpractical.com
Thu Jun 21 19:08:32 EDT 2012


The branch, 4.0/bulk-update-datetime has been created
        at  595a79ac0fa59ec52901a5bd00cbd0360dc494a2 (commit)

- Log -----------------------------------------------------------------
commit 595a79ac0fa59ec52901a5bd00cbd0360dc494a2
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Thu Jun 21 19:07:07 2012 -0400

    Make the date entry widgets on bulk update page be datetime widgets
    
    All of the fields in question are actually datetimes, not simply dates.
    The ShowTime => 0 flag dates from 86ef6b2, when the bulk update
    functionality was first added, and is erroneous.

diff --git a/share/html/Search/Bulk.html b/share/html/Search/Bulk.html
index d39c24c..fc4be7a 100755
--- a/share/html/Search/Bulk.html
+++ b/share/html/Search/Bulk.html
@@ -107,15 +107,15 @@
 <tr><td class="label"> <&|/l&>Make Status</&>: </td>
 <td class="value"> <& /Elements/SelectStatus, Name => "Status", Default => $ARGS{Status} &> </td></tr>
 <tr><td class="label"> <&|/l&>Make date Starts</&>: </td>
-<td class="value"> <& /Elements/SelectDate, Name => "Starts_Date", ShowTime => 0, Default => $ARGS{Starts_Date} || '' &> </td></tr>
+<td class="value"> <& /Elements/SelectDate, Name => "Starts_Date", Default => $ARGS{Starts_Date} || '' &> </td></tr>
 <tr><td class="label"> <&|/l&>Make date Started</&>: </td>
-<td class="value"> <& /Elements/SelectDate, Name => "Started_Date", ShowTime => 0, Default => $ARGS{Started_Date} || '' &> </td></tr>
+<td class="value"> <& /Elements/SelectDate, Name => "Started_Date", Default => $ARGS{Started_Date} || '' &> </td></tr>
 <tr><td class="label"> <&|/l&>Make date Told</&>: </td>
-<td class="value"> <& /Elements/SelectDate, Name => "Told_Date", ShowTime => 0, Default => $ARGS{Tole_Date} || '' &> </td></tr>
+<td class="value"> <& /Elements/SelectDate, Name => "Told_Date", Default => $ARGS{Tole_Date} || '' &> </td></tr>
 <tr><td class="label"> <&|/l&>Make date Due</&>: </td>
-<td class="value"> <& /Elements/SelectDate, Name => "Due_Date", ShowTime => 0, Default => $ARGS{Due_Date} || '' &> </td></tr>
+<td class="value"> <& /Elements/SelectDate, Name => "Due_Date", Default => $ARGS{Due_Date} || '' &> </td></tr>
 <tr><td class="label"> <&|/l&>Make date Resolved</&>: </td>
-<td class="value"> <& /Elements/SelectDate, Name => "Resolved_Date", ShowTime => 0, Default => $ARGS{Resolved_Date} || '' &> </td></tr>
+<td class="value"> <& /Elements/SelectDate, Name => "Resolved_Date", Default => $ARGS{Resolved_Date} || '' &> </td></tr>
 </table>
 
 </td>

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


More information about the Rt-commit mailing list