[Web] Some minor changes
parent
c3a4c6d311
commit
ccd4dda397
|
@ -178,3 +178,7 @@ nav .glyphicon {
|
|||
margin-bottom: 20px;
|
||||
color: #959595;
|
||||
}
|
||||
.slave-info {
|
||||
padding: 15px 0px 15px 15px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
|
|
@ -147,6 +147,11 @@
|
|||
<li class="logged-in-as"><a href="#" onclick="logout.submit()"><b class="username-lia"><?= htmlspecialchars($_SESSION['mailcow_cc_username']); ?> <span class="text-info">(<?= htmlspecialchars($_SESSION['dual-login']['username']); ?>)</span> </b><span class="glyphicon glyphicon-log-out"></span></a></li>
|
||||
<?php
|
||||
endif;
|
||||
if (!preg_match('/y|yes/i', getenv('MASTER'))):
|
||||
?>
|
||||
<li class="text-warning slave-info">[ slave ]</li>
|
||||
<?php
|
||||
endif;
|
||||
?>
|
||||
</ul>
|
||||
</div><!--/.nav-collapse -->
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<?php
|
||||
|
||||
// Slave does not serve UI
|
||||
if (!preg_match('/y|yes/i', getenv('MASTER'))) {
|
||||
/* if (!preg_match('/y|yes/i', getenv('MASTER'))) {
|
||||
header('Location: /SOGo', true, 307);
|
||||
exit;
|
||||
}
|
||||
}*/
|
||||
|
||||
require_once $_SERVER['DOCUMENT_ROOT'] . '/inc/vars.inc.php';
|
||||
$default_autodiscover_config = $autodiscover_config;
|
||||
|
|
Loading…
Reference in New Issue