--- trunk/bin/irc-logger.pl 2007/03/18 16:03:24 51 +++ trunk/bin/irc-logger.pl 2007/03/18 16:45:18 52 @@ -673,9 +673,9 @@ if ( ! defined( $1 ) ) { my $sth = $dbh->prepare(qq{ select name,value,changed from meta where nick = ? and channel = ? }); $sth->execute( $nick, $channel ); - $res = "config for $nick "; + $res = "config for $nick on $channel"; while ( my ($n,$v) = $sth->fetchrow_array ) { - $res .= "| $n = $v"; + $res .= " | $n = $v"; } } elsif ( ! $2 ) { my $val = meta( $nick, $channel, $1 );