diff options
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/install.php b/install.php index b461cb014..e059890b6 100644 --- a/install.php +++ b/install.php @@ -541,7 +541,12 @@ function install_complete($profile) { $function = $profile .'_profile_final'; if (function_exists($function)) { // More steps required - $output .= $function(); + $profile_message = $function(); + } + + // If the profile returned a welcome message, use that instead of default. + if (isset($profile_message)) { + $output .= $profile_message; } else { // No more steps |