[Rt-commit] [svn] r1640 - in rt/branches/3.2-RELEASE: . lib/RT/Interface

jesse at pallas.eruditorum.org jesse at pallas.eruditorum.org
Sat Oct 9 10:08:36 EDT 2004


Author: jesse
Date: Sat Oct  9 10:08:35 2004
New Revision: 1640

Modified:
   rt/branches/3.2-RELEASE/   (props changed)
   rt/branches/3.2-RELEASE/configure.ac
   rt/branches/3.2-RELEASE/lib/RT/Interface/Web.pm
Log:
 r1974 at tinbook:  jesse | 2004-10-09T14:07:08.447955Z
 RT-Ticket: 6061
 RT-Status: resolved
 RT-Update: correspond
 
 Web interface "Bulk update" was clobbering ticket status of updated tickets.
 
 


Modified: rt/branches/3.2-RELEASE/configure.ac
==============================================================================
--- rt/branches/3.2-RELEASE/configure.ac	(original)
+++ rt/branches/3.2-RELEASE/configure.ac	Sat Oct  9 10:08:35 2004
@@ -3,7 +3,7 @@
 dnl Process this file with autoconf to produce a configure script
 dnl
 dnl Embed in generated ./configure script the following CVS info:
-AC_REVISION($Revision: 1.1 $)dnl
+AC_REVISION($Revision$)dnl
 
 dnl Setup autoconf
 AC_PREREQ(2.53)

Modified: rt/branches/3.2-RELEASE/lib/RT/Interface/Web.pm
==============================================================================
--- rt/branches/3.2-RELEASE/lib/RT/Interface/Web.pm	(original)
+++ rt/branches/3.2-RELEASE/lib/RT/Interface/Web.pm	Sat Oct  9 10:08:35 2004
@@ -1016,7 +1016,10 @@
         }
     }
 
-    $ARGSRef->{'Status'} ||= $TicketObj->Status;
+
+   # Status isn't a field that can be set to a null value.
+   # RT core complains if you try
+    delete $ARGSRef->{'Status'} unless ($ARGSRef->{'Status'});
     
     my @results = UpdateRecordObject(
         AttributesRef => \@attribs,


More information about the Rt-commit mailing list