diff options
author | Friendika <info@friendika.com> | 2010-11-28 20:58:23 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-28 20:58:23 -0800 |
commit | 62bb471ba0bf8d996e4548b835cd23fa3da92696 (patch) | |
tree | 55b9839eaad40bf7dac0ddba94c27da7f7dec015 /mod/settings.php | |
parent | 34a8fb935d9619c5114981862dfe2949a90f09bb (diff) | |
download | volse-hubzilla-62bb471ba0bf8d996e4548b835cd23fa3da92696.tar.gz volse-hubzilla-62bb471ba0bf8d996e4548b835cd23fa3da92696.tar.bz2 volse-hubzilla-62bb471ba0bf8d996e4548b835cd23fa3da92696.zip |
localise login template, allow openid to be disabled
Diffstat (limited to 'mod/settings.php')
-rw-r--r-- | mod/settings.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mod/settings.php b/mod/settings.php index 47743759d..7ed7ad32e 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -196,6 +196,17 @@ function settings_content(&$a) { '$page_freelove' => PAGE_FREELOVE )); + $noid = get_config('system','no_openid'); + + if($noid) { + $oidhtml = ''; + } + else { + $oidhtml = '<label id="settings-openid-label" for="settings-openid" >' . t('OpenID: ') . '</label><input type="text" id="settings-openid" class="openid" name="openid_url" value="$openid" />' . t(" \x28Optional\x29 Allow this OpenID to login to this account."); + } + + + $opt_tpl = load_view_file("view/profile-in-directory.tpl"); $profile_in_dir = replace_macros($opt_tpl,array( @@ -260,6 +271,7 @@ function settings_content(&$a) { $o .= replace_macros($stpl,array( '$baseurl' => $a->get_baseurl(), + '$oidhtml' => $oidhtml, '$uid' => local_user(), '$username' => $username, '$openid' => $openid, |