Fixed wrong class for “moderated servers” list (“nobot” -> “nobott”)

This commit is contained in:
pezcurrel 2022-12-29 10:25:48 +01:00
parent 073cdb9ffb
commit 1762e1cc7e

View file

@ -595,7 +595,7 @@ while ($if<$il && $row=mysqli_fetch_assoc($res)) {
$sevmap=['silence'=>_('silenced'), 'suspend'=>_('suspended')]; $sevmap=['silence'=>_('silenced'), 'suspend'=>_('suspended')];
$rres=tquery('SELECT Domain, Severity, Comment FROM InstBlocks WHERE InstID='.$row['ID'],__LINE__); $rres=tquery('SELECT Domain, Severity, Comment FROM InstBlocks WHERE InstID='.$row['ID'],__LINE__);
if (mysqli_num_rows($rres)>0) { if (mysqli_num_rows($rres)>0) {
$out.='<ul class="nobot">'.N; $out.='<ul class="nobott">'.N;
while ($rrow=mysqli_fetch_assoc($rres)) { while ($rrow=mysqli_fetch_assoc($rres)) {
$out.='<li><strong>'.hspech($rrow['Domain']).'</strong>: '.$sevmap[$rrow['Severity']]; $out.='<li><strong>'.hspech($rrow['Domain']).'</strong>: '.$sevmap[$rrow['Severity']];
if (!is_null($rrow['Comment'])) $out.=' - '.hspech($rrow['Comment']); if (!is_null($rrow['Comment'])) $out.=' - '.hspech($rrow['Comment']);