Use active instead of non existing pressed

Fixes https://github.com/owncloud/core/issues/16083
This commit is contained in:
Lukas Reschke 2015-05-12 12:20:28 +02:00
parent b11c0c533e
commit 0a3bf3f963
1 changed files with 2 additions and 2 deletions

View File

@ -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='';
}