--- trunk/lib/App/RoomReservation/Messages.pm 2009/07/02 10:12:54 1155 +++ trunk/lib/App/RoomReservation/Messages.pm 2009/07/02 21:55:44 1168 @@ -23,7 +23,7 @@ $sth->execute( $value ); - die "can't find user $col = $value" if $sth->rows == 0; + die qq|Can't find user $col = $value| if $sth->rows == 0; my ( $name, $seat, $email, $token, $confirmed, $canceled ) = $sth->fetchrow_array; @@ -46,7 +46,7 @@ } elsif ( $confirmed ) { - my $url = $self->url_for( 'Confirmation/cancel_as_markup?token=' . $token ); + my $url = $self->url_for( 'Confirmation/cancel_as_markup?token=', $token ); my $html = qq| @@ -78,7 +78,7 @@ } else { # not verified - my $url = $self->url_for( 'Confirmation/verify_as_markup?token=' . $token ); + my $url = $self->url_for( 'Confirmation/verify_as_markup?token=', $token ); $self->send( $self->email, 'Confirm your reservation for lecture', <<__EMAIL__