diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-05-12 12:20:28 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-05-12 12:20:28 +0200 |
commit | 0a3bf3f963ebc4dbd46a12e2b639ceafc41420b3 (patch) | |
tree | f5d457ce52ab2a337eb1785ea767914a16fc5f08 /settings/help.php | |
parent | b11c0c533e8d447e9193cd618bf11023e6216863 (diff) | |
download | nextcloud-server-0a3bf3f963ebc4dbd46a12e2b639ceafc41420b3.tar.gz nextcloud-server-0a3bf3f963ebc4dbd46a12e2b639ceafc41420b3.zip |
Use active instead of non existing pressed
Fixes https://github.com/owncloud/core/issues/16083
Diffstat (limited to 'settings/help.php')
-rw-r--r-- | settings/help.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/help.php b/settings/help.php index 116c2083b64..aa89277d883 100644 --- a/settings/help.php +++ b/settings/help.php @@ -36,10 +36,10 @@ OC_App::setActiveNavigationEntry( "help" ); if(isset($_GET['mode']) and $_GET['mode'] === 'admin') { $url=OC_Helper::linkToAbsolute( 'core', 'doc/admin/index.html' ); $style1=''; - $style2=' pressed'; + $style2=' active'; }else{ $url=OC_Helper::linkToAbsolute( 'core', 'doc/user/index.html' ); - $style1=' pressed'; + $style1=' active'; $style2=''; } |