X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhome.php;h=f703263a2c6a532831bcfc5431c1e944e53ee0ae;hb=271a184e1e16a53116be8fff676cf0b72afa563c;hp=6ed36b7638c1ce39c62adb3be61cc6f0a9f4e764;hpb=5d22b13242849887978455f1f252b6129ebd52aa;p=friendica.git diff --git a/mod/home.php b/mod/home.php index 6ed36b7638..f703263a2c 100644 --- a/mod/home.php +++ b/mod/home.php @@ -25,9 +25,14 @@ 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'); + if(file_exists('home.html')){ + if(file_exists('home.css')){ + $a->page['htmlhead'] .= '';} + + $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);