solenv/bin/modules/installer/windows/idtglobal.pm | 1 + 1 file changed, 1 insertion(+)
New commits: commit f186fe6ea1808d3b75476efc7f490ea9ab510e4f Author: Andras Timar <[email protected]> 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 <[email protected]> Tested-by: Noel Power <[email protected]> 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; } } _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
