[Rt-commit] r7072 - in rt/branches/3.7-EXPERIMENTAL: .
ruz at bestpractical.com
ruz at bestpractical.com
Mon Feb 26 09:42:38 EST 2007
Author: ruz
Date: Mon Feb 26 09:42:38 2007
New Revision: 7072
Modified:
rt/branches/3.7-EXPERIMENTAL/ (props changed)
rt/branches/3.7-EXPERIMENTAL/lib/RT/Record.pm
Log:
r4601 at cubic-pc (orig r7037): ruz | 2007-02-20 17:42:38 +0300
r4595 at cubic-pc (orig r7028): ruz | 2007-02-19 04:57:48 +0300
* fix errors propagation. Thanks to Philip Kime.
Modified: rt/branches/3.7-EXPERIMENTAL/lib/RT/Record.pm
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/lib/RT/Record.pm (original)
+++ rt/branches/3.7-EXPERIMENTAL/lib/RT/Record.pm Mon Feb 26 09:42:38 2007
@@ -1624,7 +1624,7 @@
);
unless ( $new_value_id ) {
- return ( 0, $self->loc( "Could not add new custom field value: [_1] ", $value_msg ) );
+ return ( 0, $self->loc( "Could not add new custom field value: [_1]", $value_msg ) );
}
my $new_value = RT::ObjectCustomFieldValue->new( $self->CurrentUser );
@@ -1670,7 +1670,7 @@
);
unless ( $new_value_id ) {
- return ( 0, $self->loc( "Could not add new custom field value: [_1] ", $msg ) );
+ return ( 0, $self->loc( "Could not add new custom field value: [_1]", $msg ) );
}
if ( $args{'RecordTransaction'} ) {
my ( $tid, $msg ) = $self->_NewTransaction(
More information about the Rt-commit
mailing list