diff options
author | Friendika <info@friendika.com> | 2010-11-18 15:06:33 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-18 15:06:33 -0800 |
commit | 0c7ae3aeee155425c0e2928ae67df76a7d1fe61e (patch) | |
tree | 66f907f8899f588ed42c0d9c01711c93cbe34dd9 /mod/home.php | |
parent | abc6199c175986c6d3f7b8b7944f1c3c1ec26163 (diff) | |
download | volse-hubzilla-0c7ae3aeee155425c0e2928ae67df76a7d1fe61e.tar.gz volse-hubzilla-0c7ae3aeee155425c0e2928ae67df76a7d1fe61e.tar.bz2 volse-hubzilla-0c7ae3aeee155425c0e2928ae67df76a7d1fe61e.zip |
smooth a few rough edges of openid
Diffstat (limited to 'mod/home.php')
-rw-r--r-- | mod/home.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/home.php b/mod/home.php index 13b6d56c4..b8f16158e 100644 --- a/mod/home.php +++ b/mod/home.php @@ -20,6 +20,7 @@ function home_content(&$a) { $o .= '<h1>Welcome' . ((x($a->config,'sitename')) ? " to {$a->config['sitename']}" : "" ) . '</h1>'; if(file_exists('home.html')) $o .= file_get_contents('home.html'); + $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1); return $o; |