Revert "Added a configuration option to disable OpenID."
This reverts commit 7dc3a90d12
.
Conflicts:
actions/login.php
actions/register.php
lib/accountsettingsaction.php
lib/common.php
lib/logingroupnav.php
This commit is contained in:
parent
9f356b55c6
commit
bacef32aac
8
README
8
README
|
@ -1200,14 +1200,6 @@ For configuring invites.
|
||||||
|
|
||||||
enabled: Whether to allow users to send invites. Default true.
|
enabled: Whether to allow users to send invites. Default true.
|
||||||
|
|
||||||
openid
|
|
||||||
------
|
|
||||||
|
|
||||||
For configuring OpenID.
|
|
||||||
|
|
||||||
enabled: Whether to allow users to register and login using OpenID. Default
|
|
||||||
true.
|
|
||||||
|
|
||||||
tag
|
tag
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -247,7 +247,7 @@ class LoginAction extends Action
|
||||||
return _('For security reasons, please re-enter your ' .
|
return _('For security reasons, please re-enter your ' .
|
||||||
'user name and password ' .
|
'user name and password ' .
|
||||||
'before changing your settings.');
|
'before changing your settings.');
|
||||||
} else if (common_config('openid', 'enabled')) {
|
} else {
|
||||||
return _('Login with your username and password. ' .
|
return _('Login with your username and password. ' .
|
||||||
'Don\'t have a username yet? ' .
|
'Don\'t have a username yet? ' .
|
||||||
'[Register](%%action.register%%) a new account.');
|
'[Register](%%action.register%%) a new account.');
|
||||||
|
|
|
@ -99,9 +99,6 @@ $config['sphinx']['port'] = 3312;
|
||||||
// $config['xmpp']['public'][] = 'someindexer@example.net';
|
// $config['xmpp']['public'][] = 'someindexer@example.net';
|
||||||
// $config['xmpp']['debug'] = false;
|
// $config['xmpp']['debug'] = false;
|
||||||
|
|
||||||
// Disable OpenID
|
|
||||||
// $config['openid']['enabled'] = false;
|
|
||||||
|
|
||||||
// Turn off invites
|
// Turn off invites
|
||||||
// $config['invite']['enabled'] = false;
|
// $config['invite']['enabled'] = false;
|
||||||
|
|
||||||
|
|
|
@ -175,8 +175,6 @@ $config =
|
||||||
'host' => null, # only set if != server
|
'host' => null, # only set if != server
|
||||||
'debug' => false, # print extra debug info
|
'debug' => false, # print extra debug info
|
||||||
'public' => array()), # JIDs of users who want to receive the public stream
|
'public' => array()), # JIDs of users who want to receive the public stream
|
||||||
'openid' =>
|
|
||||||
array('enabled' => true),
|
|
||||||
'invite' =>
|
'invite' =>
|
||||||
array('enabled' => true),
|
array('enabled' => true),
|
||||||
'sphinx' =>
|
'sphinx' =>
|
||||||
|
@ -383,12 +381,6 @@ if ($_db_name != 'laconica' && !array_key_exists('ini_'.$_db_name, $config['db']
|
||||||
$config['db']['ini_'.$_db_name] = INSTALLDIR.'/classes/laconica.ini';
|
$config['db']['ini_'.$_db_name] = INSTALLDIR.'/classes/laconica.ini';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ignore openidonly if OpenID is disabled
|
|
||||||
|
|
||||||
if (!$config['openid']['enabled']) {
|
|
||||||
$config['site']['openidonly'] = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function __autoload($cls)
|
function __autoload($cls)
|
||||||
{
|
{
|
||||||
if (file_exists(INSTALLDIR.'/classes/' . $cls . '.php')) {
|
if (file_exists(INSTALLDIR.'/classes/' . $cls . '.php')) {
|
||||||
|
|
|
@ -30,9 +30,7 @@ class FinishopenidloginAction extends Action
|
||||||
function handle($args)
|
function handle($args)
|
||||||
{
|
{
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
if (!common_config('openid', 'enabled')) {
|
if (common_is_real_login()) {
|
||||||
common_redirect(common_local_url('login'));
|
|
||||||
} else if (common_is_real_login()) {
|
|
||||||
$this->clientError(_('Already logged in.'));
|
$this->clientError(_('Already logged in.'));
|
||||||
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||||
$token = $this->trimmed('token');
|
$token = $this->trimmed('token');
|
||||||
|
|
|
@ -26,9 +26,7 @@ class OpenidloginAction extends Action
|
||||||
function handle($args)
|
function handle($args)
|
||||||
{
|
{
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
if (!common_config('openid', 'enabled')) {
|
if (common_is_real_login()) {
|
||||||
common_redirect(common_local_url('login'));
|
|
||||||
} else if (common_is_real_login()) {
|
|
||||||
$this->clientError(_('Already logged in.'));
|
$this->clientError(_('Already logged in.'));
|
||||||
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||||
$openid_url = $this->trimmed('openid_url');
|
$openid_url = $this->trimmed('openid_url');
|
||||||
|
|
|
@ -82,12 +82,6 @@ class OpenidsettingsAction extends AccountSettingsAction
|
||||||
|
|
||||||
function showContent()
|
function showContent()
|
||||||
{
|
{
|
||||||
if (!common_config('openid', 'enabled')) {
|
|
||||||
$this->element('div', array('class' => 'error'),
|
|
||||||
_('OpenID is not available.'));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$user = common_current_user();
|
$user = common_current_user();
|
||||||
|
|
||||||
$this->elementStart('form', array('method' => 'post',
|
$this->elementStart('form', array('method' => 'post',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user