From 190ab46e18ec161a161fbeef01f412ae093b283f Mon Sep 17 00:00:00 2001 From: Thomas Willingham Date: Sun, 4 Nov 2012 19:58:59 +0000 Subject: [PATCH] Only show "Welcome to $Sitename" if you haven't made your own homepage. --- mod/home.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/home.php b/mod/home.php index 6ed36b7638..76318b157c 100644 --- a/mod/home.php +++ b/mod/home.php @@ -25,9 +25,10 @@ function home_content(&$a) { if(x($_SESSION,'mobile-theme')) unset($_SESSION['mobile-theme']); - $o .= '

' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '

'; if(file_exists('home.html')) $o .= file_get_contents('home.html'); + else $o .= '

' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '

'; + $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1);