From 3c6d61e73c65d89f97474f75abbadc9ac457a43b Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 3 Jan 2007 11:10:58 +0000 Subject: - Patch #104763 by RobRoy: better defaults for page and story. --- install.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'install.php') 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 -- cgit v1.2.3