diff options
author | Jeffery To <jeffery.to@gmail.com> | 2009-08-13 22:18:06 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2009-08-13 22:18:06 +0800 |
commit | 7dc3a90d1252137859a687e32313ea569dcf8796 (patch) | |
tree | 8da73e6ca6f22a8e08c0126b5521e74d77005f45 /lib/common.php | |
parent | 853b6d38b362e3a905195d9ff850c9a884d412bd (diff) |
Added a configuration option to disable OpenID.
If $config['openid']['enabled'] is set to false, OpenID is removed from
the navigation and direct accesses to OpenID login pages redirect to the
login page.
If OpenID is enabled, $config['site']['openidonly'] is ignored, i.e.
OpenID is required to go OpenID-only.
Diffstat (limited to 'lib/common.php')
-rw-r--r-- | lib/common.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/common.php b/lib/common.php index f26155e70..3fc047af9 100644 --- a/lib/common.php +++ b/lib/common.php @@ -170,6 +170,8 @@ $config = 'host' => null, # only set if != server 'debug' => false, # print extra debug info 'public' => array()), # JIDs of users who want to receive the public stream + 'openid' => + array('enabled' => true), 'invite' => array('enabled' => true), 'sphinx' => @@ -371,6 +373,12 @@ if ($_db_name != 'laconica' && !array_key_exists('ini_'.$_db_name, $config['db'] $config['db']['ini_'.$_db_name] = INSTALLDIR.'/classes/laconica.ini'; } +// Ignore openidonly if OpenID is disabled + +if (!$config['openid']['enabled']) { + $config['site']['openidonly'] = false; +} + // XXX: how many of these could be auto-loaded on use? require_once 'Validate.php'; |