[Libreoffice-commits] .: Branch 'libreoffice-4-0' - solenv/bin
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Thu Jan 17 01:55:00 PST 2013
solenv/bin/modules/installer/windows/idtglobal.pm | 1 +
1 file changed, 1 insertion(+)
New commits:
commit f186fe6ea1808d3b75476efc7f490ea9ab510e4f
Author: Andras Timar <atimar at suse.com>
Date: Wed Jan 16 17:16:03 2013 +0100
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 at suse.com>
Tested-by: Noel Power <noel.power at suse.com>
diff --git a/solenv/bin/modules/installer/windows/idtglobal.pm b/solenv/bin/modules/installer/windows/idtglobal.pm
index b29004e..2905a67 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;
}
}
More information about the Libreoffice-commits
mailing list