Commit bb90b00359a9d9556bef21c928977dbd58f6d7d9

Authored by Paul Barrett
1 parent c635afc3

Corrected default return from setup wizard version check function

KTS-4530. In the Setup Wizard, Community Edition is not correctly recognized as such for a source only installation

Fixed

Committed by: Paul Barrett

Reviewed by: Jarrett Jordaan
Showing 1 changed file with 1 additions and 1 deletions
setup/wizard/installUtil.php
@@ -878,7 +878,7 @@ class InstallUtil { @@ -878,7 +878,7 @@ class InstallUtil {
878 return $type; 878 return $type;
879 } 879 }
880 880
881 - return false; 881 + return "community";
882 } 882 }
883 883
884 /** 884 /**