Fix table header

This commit is contained in:
Victor LABORIE 2016-11-22 14:54:02 +01:00
parent 6f40c2e853
commit 54703f1996

View file

@ -22,19 +22,21 @@
<thead> <thead>
<tr> <tr>
<?php if(is_superadmin()) { <?php if(is_superadmin()) {
print '<th>Propriétaire</th>'; printf('<th>Propriétaire</th>');
} ?> printf('<th>Domaine</th>');
<th>Domaine</th> }
<!--<th>Opérations</th>--> if($conf['cluster']) {
<?php if($conf['cluster']) { ?> printf('<th>Bdd</th>');
<th>Bdd</th> printf('<th>Mail</th>');
<th>Mail</th> printf('<th>Replication</th>');
<th>Replication</th> printf('<th>Master</th>');
<th>Master</th> printf('<th>Slave</th>');
<th>Slave</th> }
<?php if(is_superadmin()) { printf('<th>Alias</th>');
print '<th>Alias</th>'; if(is_superadmin()) {
}} ?> printf('<th>Opérations</th>');
}
?>
<tr> <tr>
</thead> </thead>
<tbody> <tbody>