[Rt-commit] r4084 - in rt/branches/3.4-RELEASE: . lib/RT

alexmv at bestpractical.com alexmv at bestpractical.com
Mon Nov 14 15:51:28 EST 2005


Author: alexmv
Date: Mon Nov 14 15:51:27 2005
New Revision: 4084

Modified:
   rt/branches/3.4-RELEASE/   (props changed)
   rt/branches/3.4-RELEASE/lib/RT/Record.pm
Log:
 r7161 at zoq-fot-pik:  chmrr | 2005-11-14 15:50:56 -0500
 RT-Ticket: 6458
 RT-Status: resolved
 RT-Update: correspond
  * Removed extra return argument from _AddLink, thanks to Todd Chapman
    <todd at chaka.net>


Modified: rt/branches/3.4-RELEASE/lib/RT/Record.pm
==============================================================================
--- rt/branches/3.4-RELEASE/lib/RT/Record.pm	(original)
+++ rt/branches/3.4-RELEASE/lib/RT/Record.pm	Mon Nov 14 15:51:27 2005
@@ -1297,7 +1297,7 @@
                              Target => $args{'Target'} );
     if ( $old_link->Id ) {
         $RT::Logger->debug("$self Somebody tried to duplicate a link");
-        return ( $old_link->id, $self->loc("Link already exists"), 0 );
+        return ( $old_link->id, $self->loc("Link already exists") );
     }
 
     # }}}


More information about the Rt-commit mailing list