summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-01-03 11:10:58 +0000
committerDries Buytaert <dries@buytaert.net>2007-01-03 11:10:58 +0000
commit3c6d61e73c65d89f97474f75abbadc9ac457a43b (patch)
tree7fd9e6c75615b7926da991069a920e77d4ed11b1 /install.php
parentdbcf525d42151c122517f470341e42d3c4956eaf (diff)
downloadbrdo-3c6d61e73c65d89f97474f75abbadc9ac457a43b.tar.gz
brdo-3c6d61e73c65d89f97474f75abbadc9ac457a43b.tar.bz2
- Patch #104763 by RobRoy: better defaults for page and story.
Diffstat (limited to 'install.php')
-rw-r--r--install.php7
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