diff options
author | Andras Timar <atimar@suse.com> | 2013-01-16 17:16:03 +0100 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2013-01-17 09:54:41 +0000 |
commit | f186fe6ea1808d3b75476efc7f490ea9ab510e4f (patch) | |
tree | 1ecb9677f292c27858370a5b838c26afcba478b9 /solenv | |
parent | 573e3b1aa208ffed6d5ca22698f1fe4c271e3c8e (diff) |
fdo#59321 un-escape quotes in Windows Installer's idt files
Change-Id: Iecd39e00ed61449a720354f95cbb695447797bff
Reviewed-on: https://gerrit.libreoffice.org/1728
Reviewed-by: Noel Power <noel.power@suse.com>
Tested-by: Noel Power <noel.power@suse.com>
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/installer/windows/idtglobal.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/solenv/bin/modules/installer/windows/idtglobal.pm b/solenv/bin/modules/installer/windows/idtglobal.pm index b29004e4fb55..2905a6799196 100644 --- a/solenv/bin/modules/installer/windows/idtglobal.pm +++ b/solenv/bin/modules/installer/windows/idtglobal.pm @@ -662,6 +662,7 @@ sub get_language_string_from_language_block if ( ${$language_block}[$i] =~ /^\s*$language\s*\=\s*\"(.*)\"\s*$/ ) { $newstring = $1; + $newstring =~ s/\\\"/\"/g; #un-escape quotes, fdo#59321 last; } } |