--- trunk/lib/Frey/Run.pm 2008/11/20 14:39:43 480 +++ trunk/lib/Frey/Run.pm 2008/11/24 21:32:32 499 @@ -91,7 +91,6 @@ $html = $o->page; } $body = $o->as_markup unless $html; - warn ">>> markup $class ",length( $html || $body ), " ", $html ? 'html' : 'body', " bytes"; } elsif ( $self->run eq 'as_sponge' ) { $data = $o->as_sponge; @@ -117,7 +116,8 @@ push @{ $self->status }, { 'data' => $data }; } if ( ! $html ) { - $body .= Frey::View::Dumper->new( data => $data )->as_markup; + $body = Frey::View::Dumper->new( data => $body )->as_markup if ref $body; + $body .= Frey::View::Dumper->new( data => $data )->as_markup if defined $data; } # override our status with one from object