[Rt-commit] r6013 - in rtir/branches/2.1-EXPERIMENTAL: . html/RTIR/Elements html/RTIR/Incident/Elements

ruz at bestpractical.com ruz at bestpractical.com
Wed Sep 20 22:39:15 EDT 2006


Author: ruz
Date: Wed Sep 20 22:39:14 2006
New Revision: 6013

Modified:
   rtir/branches/2.1-EXPERIMENTAL/   (props changed)
   rtir/branches/2.1-EXPERIMENTAL/html/RTIR/Elements/ShowDates
   rtir/branches/2.1-EXPERIMENTAL/html/RTIR/Incident/Create.html
   rtir/branches/2.1-EXPERIMENTAL/html/RTIR/Incident/Elements/Create

Log:
 r1606 at cubic-pc:  cubic | 2006-09-21 04:42:44 +0400
 * minor changes: uninit warnings


Modified: rtir/branches/2.1-EXPERIMENTAL/html/RTIR/Elements/ShowDates
==============================================================================
--- rtir/branches/2.1-EXPERIMENTAL/html/RTIR/Elements/ShowDates	(original)
+++ rtir/branches/2.1-EXPERIMENTAL/html/RTIR/Elements/ShowDates	Wed Sep 20 22:39:14 2006
@@ -41,7 +41,7 @@
     <td class="labeltop"><&|/l&>Due</&>:</td>
     <td class="value">
 % my $due = $Ticket->DueObj;
-% if ( $due->Diff < 0 ) {
+% if ( ($due->Diff || 0) < 0 ) {
         <span class="overdue"><% $due->AsString %></span>
 % } else {
         <% $due->AsString %>

Modified: rtir/branches/2.1-EXPERIMENTAL/html/RTIR/Incident/Create.html
==============================================================================
--- rtir/branches/2.1-EXPERIMENTAL/html/RTIR/Incident/Create.html	(original)
+++ rtir/branches/2.1-EXPERIMENTAL/html/RTIR/Incident/Create.html	Wed Sep 20 22:39:14 2006
@@ -109,7 +109,7 @@
             Transactions => $Transactions,
             Type         => 'messages',
             Include      => ['Create', 'Correspond'],
-        );
+        ) || '';
         $ARGS{'Content'} =~ s/\&gt;/>/g;
     }
 }

Modified: rtir/branches/2.1-EXPERIMENTAL/html/RTIR/Incident/Elements/Create
==============================================================================
--- rtir/branches/2.1-EXPERIMENTAL/html/RTIR/Incident/Elements/Create	(original)
+++ rtir/branches/2.1-EXPERIMENTAL/html/RTIR/Incident/Elements/Create	Wed Sep 20 22:39:14 2006
@@ -79,7 +79,7 @@
 <& /RTIR/Elements/EditRTIRField,
     QueueObj => $QueueObj,
     Name     => 'IP',
-    Cols     => 40,
+    Cols     => 40, Rows => 5,
 &></td></tr>
 
 <tr><td colspan="2">


More information about the Rt-commit mailing list