diff options
author | Andras Timar <atimar@suse.com> | 2013-08-26 12:57:22 -0700 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2013-08-26 22:58:43 -0700 |
commit | fb0bc00e48666c5e2863a9e78623460ee54215cc (patch) | |
tree | 6e122f274e98e4e2d1a17980e72dfce6a643ae66 /solenv/bin | |
parent | ed5dc65079c27d6db8f9cb4b0bf4a907ecf041af (diff) |
fdo#64053 do not let too long comment in ARP Comment field
Change-Id: Ica8e113b2f1aa22a426801bc75df68c02d952ed3
Diffstat (limited to 'solenv/bin')
-rw-r--r-- | solenv/bin/modules/installer/windows/property.pm | 1 |
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)"; |