--- trunk/lib/Frey/SVN.pm 2008/12/11 00:27:19 807 +++ trunk/lib/Frey/SVN.pm 2008/12/15 20:10:48 851 @@ -140,12 +140,16 @@ push @files, "$path"; } elsif ($action eq "D") { push @files, "$path"; - } else{ + } else { push @files, $path; } } - html '

',join(", ",@files),': ',encode($e->{'msg'}),'

'; + my $msg = $e->{'msg'}; + $msg = '' if ref($msg); # FIXME why do I need this, dammit? + $msg = encode( $msg ); + + html '

',join(", ",@files),' ',$msg,'

'; });