Fixed wrong class for “moderated servers” list (“nobot” -> “nobott”)
This commit is contained in:
parent
073cdb9ffb
commit
1762e1cc7e
1 changed files with 1 additions and 1 deletions
|
@ -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']);
|
||||||
|
|
Loading…
Reference in a new issue