Intranet: Fix word-breaking for mysqlinfo

This commit is contained in:
cytopia 2016-10-24 23:03:20 +02:00
parent 3620276039
commit 52bcb7b104
No known key found for this signature in database
GPG Key ID: 6D56EDB8695128A2

View File

@ -27,14 +27,14 @@
<table class="table table-striped">
<thead class="thead-inverse">
<tr>
<th>Variable</th>
<th style="word-break: normal;">Variable</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<?php foreach (getMySQLConfig() as $key => $val): ?>
<tr>
<td><?php echo $key;?></td>
<td style="word-break: normal;"><?php echo $key;?></td>
<td><?php echo $val;?></td>
</tr>
<?php endforeach; ?>