Subject: | _tt_add_devpopup_info should entity encode the tt params |
anything that looks like html in a tt param will break how DevPopup works.
Changing line 460 of version 1.04 from:
my $dump = $dumper->Dump();
to:
require HTML::Entities;
my $dump = HTML::Entities::encode_entities( $dumper->Dump() );
makes everything work just great.
Thanks for the plugin, I love it. The DevPopup support was a happy surprise.