[Libreoffice-commits] core.git: solenv/bin
Andras Timar
atimar at suse.com
Mon Aug 26 22:58:47 PDT 2013
solenv/bin/modules/installer/windows/property.pm | 1 +
1 file changed, 1 insertion(+)
New commits:
commit fb0bc00e48666c5e2863a9e78623460ee54215cc
Author: Andras Timar <atimar at suse.com>
Date: Mon Aug 26 12:57:22 2013 -0700
fdo#64053 do not let too long comment in ARP Comment field
Change-Id: Ica8e113b2f1aa22a426801bc75df68c02d952ed3
diff --git a/solenv/bin/modules/installer/windows/property.pm b/solenv/bin/modules/installer/windows/property.pm
index 2244c8b..5bd2508 100644
--- a/solenv/bin/modules/installer/windows/property.pm
+++ b/solenv/bin/modules/installer/windows/property.pm
@@ -49,6 +49,7 @@ sub get_arpcomments_for_property_table
my $languagestring = $$languagestringref;
$languagestring =~ s/\_/\,/g;
+ if ( length($languagestring) > 30 ) { $languagestring = "multilanguage"; } # fdo#64053
$comment = $comment . " ($languagestring)";
More information about the Libreoffice-commits
mailing list