[Rt-commit] r3611 - in rtfm/branches/2.1-TESTING: . html/RTFM/Article lib/RT

alexmv at bestpractical.com alexmv at bestpractical.com
Fri Aug 5 19:19:35 EDT 2005


Author: alexmv
Date: Fri Aug  5 19:19:34 2005
New Revision: 3611

Modified:
   rtfm/branches/2.1-TESTING/   (props changed)
   rtfm/branches/2.1-TESTING/META.yml
   rtfm/branches/2.1-TESTING/html/RTFM/Article/Edit.html
   rtfm/branches/2.1-TESTING/lib/RT/FM.pm
   rtfm/branches/2.1-TESTING/releng.cnf
Log:
 r5658 at zoq-fot-pik:  chmrr | 2005-08-05 19:18:45 -0400
  * If creation fails because of link creation, $ArticleObj->Id will be
    non-zero, as it *did* have a row in the article table -- even though
    it was rolled back.  Forcing $ArticleObj to be fresh avoids a bug with
    EditCustomFields thinking the article actually existed, and hence not
    having a sticky value.
  * Version bump to 2.1.34


Modified: rtfm/branches/2.1-TESTING/META.yml
==============================================================================
--- rtfm/branches/2.1-TESTING/META.yml	(original)
+++ rtfm/branches/2.1-TESTING/META.yml	Fri Aug  5 19:19:34 2005
@@ -1,5 +1,5 @@
 name: RT-FM
-version: 2.1.33
+version: 2.1.34
 abstract: RT FM Extension
 license: GPL version 2
 distribution_type: module

Modified: rtfm/branches/2.1-TESTING/html/RTFM/Article/Edit.html
==============================================================================
--- rtfm/branches/2.1-TESTING/html/RTFM/Article/Edit.html	(original)
+++ rtfm/branches/2.1-TESTING/html/RTFM/Article/Edit.html	Fri Aug  5 19:19:34 2005
@@ -146,6 +146,7 @@
             $m->comp( "/RTFM/Elements/Error",
                 Why => loc( "'[_1]' isn't a valid class identifier", $Class ) );
         }
+        $ArticleObj = RT::FM::Article->new( $session{'CurrentUser'} );
         $id        = 'new';
         $EditClass = 0;
         $title     = loc('Create a new article');

Modified: rtfm/branches/2.1-TESTING/lib/RT/FM.pm
==============================================================================
--- rtfm/branches/2.1-TESTING/lib/RT/FM.pm	(original)
+++ rtfm/branches/2.1-TESTING/lib/RT/FM.pm	Fri Aug  5 19:19:34 2005
@@ -22,7 +22,7 @@
 use RT::FM::System;
 
 
-our $VERSION = '2.1.33';
+our $VERSION = '2.1.34';
 
 # Create a system object for RTFM
 $RT::FM::System = RT::FM::System->new($RT::SystemUser);

Modified: rtfm/branches/2.1-TESTING/releng.cnf
==============================================================================
--- rtfm/branches/2.1-TESTING/releng.cnf	(original)
+++ rtfm/branches/2.1-TESTING/releng.cnf	Fri Aug  5 19:19:34 2005
@@ -1,5 +1,5 @@
 PRODUCT                 = RTFM
-TAG                     = 2.1.33
+TAG                     = 2.1.34
 CANONICAL_REPO          = svn+ssh://svn.bestpractical.com/svn/bps-public/rtfm/
 TAGS                    = tags/
 TRUNK                   = trunk/


More information about the Rt-commit mailing list