[Rt-commit] rt branch, development, updated. b794f8668c081fecc6bec3a04922c434c4e2b964
Thomas Sibley
trs at bestpractical.com
Thu Jul 8 16:10:07 EDT 2010
The branch, development has been updated
via b794f8668c081fecc6bec3a04922c434c4e2b964 (commit)
from 28ad43ea4f372f366cf2b85d84ba647c1d2dc505 (commit)
Summary of changes:
lib/RT/Action/UpdateUser.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit b794f8668c081fecc6bec3a04922c434c4e2b964
Author: Thomas Sibley <trs at bestpractical.com>
Date: Thu Jul 8 16:11:36 2010 -0400
Concatenate, otherwise we get ARRAY(0xDEADBEEF)
diff --git a/lib/RT/Action/UpdateUser.pm b/lib/RT/Action/UpdateUser.pm
index 393c7e7..388bf79 100644
--- a/lib/RT/Action/UpdateUser.pm
+++ b/lib/RT/Action/UpdateUser.pm
@@ -53,7 +53,7 @@ sub take_action {
sub report_success {
my $self = shift;
- $self->result->message("Updated user ", $self->record->name);
+ $self->result->message("Updated user " . $self->record->name);
}
1;
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list