diff options
-rw-r--r-- | solenv/bin/modules/installer/windows/property.pm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/solenv/bin/modules/installer/windows/property.pm b/solenv/bin/modules/installer/windows/property.pm index 796b87b7d9de..f780a6dddd59 100644 --- a/solenv/bin/modules/installer/windows/property.pm +++ b/solenv/bin/modules/installer/windows/property.pm @@ -149,13 +149,6 @@ sub get_productname_for_property_table($$) my $version = $allvariables->{'PRODUCTVERSION'}; my $productname = $name . " " . $version; - my $postversionextension = ""; - if ( $allvariables->{'POSTVERSIONEXTENSION'} ) - { - $postversionextension = $allvariables->{'POSTVERSIONEXTENSION'}; - $productname = $productname . " " . $postversionextension; - } - my $productextension = ""; if ( $allvariables->{'PRODUCTEXTENSION'} ) { @@ -163,6 +156,13 @@ sub get_productname_for_property_table($$) $productname = $productname . $productextension; } + my $postversionextension = ""; + if ( $allvariables->{'POSTVERSIONEXTENSION'} ) + { + $postversionextension = $allvariables->{'POSTVERSIONEXTENSION'}; + $productname = $productname . " " . $postversionextension; + } + if ( $installer::globals::languagepack ) { my $langstring = get_english_language_string(); # Example: (English, German) |