Use active instead of non existing pressed

Fixes https://github.com/owncloud/core/issues/16083
remotes/origin/poc-doctrine-migrations
Lukas Reschke 2015-05-12 12:20:28 +07:00
parent b11c0c533e
commit 0a3bf3f963
1 changed files with 2 additions and 2 deletions

@ -36,10 +36,10 @@ OC_App::setActiveNavigationEntry( "help" );
if(isset($_GET['mode']) and $_GET['mode'] === 'admin') { if(isset($_GET['mode']) and $_GET['mode'] === 'admin') {
$url=OC_Helper::linkToAbsolute( 'core', 'doc/admin/index.html' ); $url=OC_Helper::linkToAbsolute( 'core', 'doc/admin/index.html' );
$style1=''; $style1='';
$style2=' pressed'; $style2=' active';
}else{ }else{
$url=OC_Helper::linkToAbsolute( 'core', 'doc/user/index.html' ); $url=OC_Helper::linkToAbsolute( 'core', 'doc/user/index.html' );
$style1=' pressed'; $style1=' active';
$style2=''; $style2='';
} }