[Libreoffice-commits] .: solenv/bin

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Jan 16 08:18:55 PST 2013


 solenv/bin/modules/installer/windows/idtglobal.pm |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 05923e058a6b90f05c90d5f9aef4de58233a51ac
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

diff --git a/solenv/bin/modules/installer/windows/idtglobal.pm b/solenv/bin/modules/installer/windows/idtglobal.pm
index de80cef..909dc34 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