diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-08-05 16:05:58 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-08-06 10:08:26 +0200 |
commit | f039320a0b432937297c3deb93c1c78fe2d8d4a9 (patch) | |
tree | 77b05cf4d8a2c8a3fc62e1a456c7762d7dadb40e /settings/index.php | |
parent | c998bc1215cce9508d2cf42b49fefab0a573baaf (diff) | |
download | nextcloud-server-f039320a0b432937297c3deb93c1c78fe2d8d4a9.tar.gz nextcloud-server-f039320a0b432937297c3deb93c1c78fe2d8d4a9.zip |
move openid settings to Personal
Diffstat (limited to 'settings/index.php')
-rw-r--r-- | settings/index.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/settings/index.php b/settings/index.php index a37ae7e6ea2..8b970a13c58 100644 --- a/settings/index.php +++ b/settings/index.php @@ -29,6 +29,11 @@ $tmpl->assign('usage',OC_Helper::humanFileSize($used)); $tmpl->assign('total_space',OC_Helper::humanFileSize($total)); $tmpl->assign('usage_relative',$relative); $tmpl->assign('languages',$languages); +$tmpl->assign('hasopenid',OC_App::isEnabled( 'user_openid' )); +if(OC_App::isEnabled( 'user_openid' )){ + $identity=OC_Preferences::getValue(OC_User::getUser(),'user_openid','identity',''); + $tmpl->assign('identity',$identity); +} $tmpl->printPage(); ?> |