Merge pull request #16271 from owncloud/use-active

Use active instead of non existing pressed
This commit is contained in:
Jan-Christoph Borchardt 2015-05-12 13:16:50 +02:00
commit 127b0d9edf
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='';
}