X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gosa-core%2Fhtml%2Fmain.php;h=68941ebfa48a6f871031e715c21cbd71b539fd88;hb=7dc3c7182b1bc782815ead845b9178d809e1229c;hp=86c2f7c6c9acdfc71146108929a0ac1402c347f0;hpb=030d981c9acc3801b8a7d40c45ffa386c65bd6c1;p=gosa.git diff --git a/gosa-core/html/main.php b/gosa-core/html/main.php index 86c2f7c6c..68941ebfa 100644 --- a/gosa-core/html/main.php +++ b/gosa-core/html/main.php @@ -288,7 +288,11 @@ if (session::get('js')==FALSE){ $smarty->assign("help_method"," onclick=\"return popup('helpviewer.php$plug','GOsa help');\""); } -$smarty->assign ("username", $ui->username); +if($ui->ignore_acl_for_current_user()){ + $smarty->assign ("username", ""._("User ACL checks disabled")." ".$ui->username); +}else{ + $smarty->assign ("username", $ui->username); +} $smarty->assign ("go_logo", get_template_path('images/go_logo.png')); $smarty->assign ("go_base", get_template_path('images/dtree.png')); $smarty->assign ("go_home", get_template_path('images/gohome.png'));