mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Revert "Fixed php short tags :/"
This commit is contained in:
@@ -28,17 +28,17 @@ if ($services['total']) {
|
||||
</div>
|
||||
<table class="table table-hover table-condensed table-striped">
|
||||
<tr>
|
||||
<td title="Total"><img src='images/16/cog.png'> <?php echo $services['total']?></td>
|
||||
<td title="Status - Ok"><img src='images/16/cog_add.png'> <?php echo $services[0]?></td>
|
||||
<td title="Status - Warning"><img src='images/16/cog_error.png'> <?php echo $services[1]?></td>
|
||||
<td title="Status - Critical"><img src='images/16/cog_delete.png'> <?php echo $services[2]?></td>
|
||||
<td title="Total"><img src='images/16/cog.png'> <?=$services['total']?></td>
|
||||
<td title="Status - Ok"><img src='images/16/cog_add.png'> <?=$services[0]?></td>
|
||||
<td title="Status - Warning"><img src='images/16/cog_error.png'> <?=$services[1]?></td>
|
||||
<td title="Status - Critical"><img src='images/16/cog_delete.png'> <?=$services[2]?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='4'><?php echo $string?></td>
|
||||
<td colspan='4'><?=$string?></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user