summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2013-08-26 12:57:22 -0700
committerAndras Timar <atimar@suse.com>2013-08-26 22:58:43 -0700
commitfb0bc00e48666c5e2863a9e78623460ee54215cc (patch)
tree6e122f274e98e4e2d1a17980e72dfce6a643ae66 /solenv
parented5dc65079c27d6db8f9cb4b0bf4a907ecf041af (diff)
fdo#64053 do not let too long comment in ARP Comment field
Change-Id: Ica8e113b2f1aa22a426801bc75df68c02d952ed3
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/modules/installer/windows/property.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/solenv/bin/modules/installer/windows/property.pm b/solenv/bin/modules/installer/windows/property.pm
index 2244c8b61bf4..5bd250833774 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)";