git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@1501 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2012-01-13 12:01:10 +00:00
parent fb92b323e7
commit 3c34001bd9
2 changed files with 4 additions and 4 deletions

View File

@ -435,10 +435,10 @@ sub dump {
# Make sure we've read in our data
my $data = $self->data;
require Data::Dumper;
print "<pre>Bugzilla::Chart object:\n";
print Data::Dumper::Dumper($self);
print html_quote(Data::Dumper::Dumper($self));
print "</pre>";
}

View File

@ -303,9 +303,9 @@ $cgi->send_header(-type => $format->{'ctype'},
if ($cgi->param('debug')) {
require Data::Dumper;
print "<pre>data hash:\n";
print Data::Dumper::Dumper(%data) . "\n\n";
print html_quote(Data::Dumper::Dumper(%data)) . "\n\n";
print "data array:\n";
print Data::Dumper::Dumper(@image_data) . "\n\n</pre>";
print html_quote(Data::Dumper::Dumper(@image_data)) . "\n\n</pre>";
}
# All formats point to the same section of the documentation.