fix register policy

This commit is contained in:
Mike Macgirvin 2010-07-08 17:59:19 -07:00
parent bec3d15c52
commit 5ca174ae34
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ function home_content(&$a) {
$a->page['footer'] .= "<div class=\"powered\" >Powered by <a href=\"http://dfrn.org\" name=\"DFRN.org\" >DFRN</a></div>"; $a->page['footer'] .= "<div class=\"powered\" >Powered by <a href=\"http://dfrn.org\" name=\"DFRN.org\" >DFRN</a></div>";
$o .= '<h1>Welcome' . ((x($a->config,'sitename')) ? " to {$a->config['sitename']}" : "" ) . '</h1>'; $o .= '<h1>Welcome' . ((x($a->config,'sitename')) ? " to {$a->config['sitename']}" : "" ) . '</h1>';
$o .= login(1); $o .= login(($a->config['register_html'] == REGISTER_CLOSED) ? 0 : 1);
return $o; return $o;

View File

@ -4,5 +4,5 @@
function login_content(&$a) { function login_content(&$a) {
// return login($a->config['register_enabled']); // return login($a->config['register_enabled']);
return login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1); return login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
} }