--- trunk/lib/Frey/Run.pm 2008/11/01 00:14:05 223 +++ trunk/lib/Frey/Run.pm 2008/11/01 00:59:02 225 @@ -3,6 +3,7 @@ extends 'Frey'; with 'Frey::Web'; with 'Frey::Config'; +with 'Frey::Escape'; =head1 NAME @@ -64,7 +65,7 @@ $html = $o->markup; warn ">>> markup $class ",length( $html ), " bytes\n"; } elsif ( $o->can('data') ) { - $html = '' . dump( $o->data ) . ''; + $html = '' . $self->html_escape( dump( $o->data ) ) . ''; } else { $html = "IGNORE: $class ", $o->dump; warn $html;