diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-12-13 09:26:25 +0100 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-12-13 09:26:25 +0100 |
commit | 89bbabd77bac2d21739b232e6315f2f09b9c9b56 (patch) | |
tree | 3cd7dc565beace0840df1c0a0829895884b3d125 /settings/help.php | |
parent | f85106b6b5d2e37ebf4cb850a076c4bb67f2a735 (diff) | |
download | nextcloud-server-89bbabd77bac2d21739b232e6315f2f09b9c9b56.tar.gz nextcloud-server-89bbabd77bac2d21739b232e6315f2f09b9c9b56.zip |
a bit more polish. We are getting there.
Diffstat (limited to 'settings/help.php')
-rw-r--r-- | settings/help.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/settings/help.php b/settings/help.php index 6f99596b2ba..cdf0c549e44 100644 --- a/settings/help.php +++ b/settings/help.php @@ -15,8 +15,12 @@ OC_App::setActiveNavigationEntry( "help" ); if(isset($_GET['mode']) and $_GET['mode']=='admin') { $url=OC_Helper::linkToAbsolute( 'core', 'docu/admin' ); + $style1=''; + $style2=' pressed'; }else{ $url=OC_Helper::linkToAbsolute( 'core', 'docu/user' ); + $style1=' pressed'; + $style2=''; } $url1=OC_Helper::linkToRoute( "settings_help" ).'?mode=user'; @@ -27,4 +31,6 @@ $tmpl->assign( "admin", OC_Group::inGroup(OC_User::getUser(), 'admin') ); $tmpl->assign( "url", $url ); $tmpl->assign( "url1", $url1 ); $tmpl->assign( "url2", $url2 ); +$tmpl->assign( "style1", $style1 ); +$tmpl->assign( "style2", $style2 ); $tmpl->printPage(); |