fix stat table width

This commit is contained in:
Ben Harris 2018-10-27 02:50:27 -04:00
parent c654286c49
commit 6f2a04b583
Signed by untrusted user: ben
GPG Key ID: 4E0AF802FFF7960C
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@ include __DIR__."/../header.php";
<?php foreach($stats->channels as $channel): ?>
<tr>
<td><a href="<?=$channel->webchatlink?>"><?=$channel->name?></a></td>
<td><?=$channel->usercount?></td><td><?=$channel->topic?></td>
<td><?=$channel->usercount?></td>
<td style="word-wrap: break-word; white-space: pre-wrap; max-width:700px"><?=$channel->topic?></td>
</tr>
<?php endforeach; ?>
</tbody>