Bug 140754 - remove margin:100% from css property

git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@1870 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vkoptev 2013-12-12 10:22:54 +00:00
parent 40ae682034
commit d12d5f0f54
1 changed files with 3 additions and 1 deletions

View File

@ -339,7 +339,9 @@ sub view {
if (defined $action && $action eq 'online_view' && $attachment->isOfficeDocument())
{
Bugzilla->send_header();
print $attachment->_get_converted_html();
my $html = $attachment->_get_converted_html();
$html =~ s/\n([^\n]*List_20_Paragraph.*?\{.*?)margin:100%;(.*?\}[^\n]*?)\n/\n$1$2\n/;
print $html;
}
else
{