"When revoking an assurance in the SE console the messagebox is unclear"
This commit is contained in:
parent
868ff702d5
commit
f9e74c01d0
2 changed files with 44 additions and 44 deletions
|
@ -319,7 +319,7 @@
|
||||||
<td class="DataTD" <?=$tdstyle?>> </td>
|
<td class="DataTD" <?=$tdstyle?>> </td>
|
||||||
<? } else {
|
<? } else {
|
||||||
?>
|
?>
|
||||||
<td class="DataTD" <?=$tdstyle?>><?=$emopen?><a href="account.php?id=43&userid=<?=intval($userid)?>&assurance=<?=intval($assuranceid)?>&csrf=<?=make_csrf('admdelassurance')?>" onclick="return confirm('<?=_("Are you sure you want to revoke this assurance?")?>');"><?=_("Revoke")?></a><?=$emclose?></td>
|
<td class="DataTD" <?=$tdstyle?>><?=$emopen?><a href="account.php?id=43&userid=<?=intval($userid)?>&assurance=<?=intval($assuranceid)?>&csrf=<?=make_csrf('admdelassurance')?>" onclick="return confirm('<?=sprintf(_("Are you sure you want to revoke the assurance with ID "%s"?"),$assuranceid)?>');"><?=_("Revoke")?></a><?=$emclose?></td>
|
||||||
<?
|
<?
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -831,7 +831,7 @@ function showassuredto()
|
||||||
<td class="DataTD"><?=intval($drow['points'])?></td>
|
<td class="DataTD"><?=intval($drow['points'])?></td>
|
||||||
<td class="DataTD"><?=sanitizeHTML($drow['location'])?></td>
|
<td class="DataTD"><?=sanitizeHTML($drow['location'])?></td>
|
||||||
<td class="DataTD"><?=sanitizeHTML($drow['method'])?></td>
|
<td class="DataTD"><?=sanitizeHTML($drow['method'])?></td>
|
||||||
<td class="DataTD"><a href="account.php?id=43&userid=<?=intval($drow['to'])?>&assurance=<?=intval($drow['id'])?>&csrf=<?=make_csrf('admdelassurance')?>" onclick="return confirm('<?=_("Are you sure you want to revoke this assurance?")?>');"><?=_("Revoke")?></a></td>
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=intval($drow['to'])?>&assurance=<?=intval($drow['id'])?>&csrf=<?=make_csrf('admdelassurance')?>" onclick="return confirm('<?=sprintf(_("Are you sure you want to revoke the assurance with ID "%s"?"),$drow['id'])?>');"><?=_("Revoke")?></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? } ?>
|
<? } ?>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -877,7 +877,7 @@ function showassuredby()
|
||||||
<td class="DataTD"><?=$drow['points']?></td>
|
<td class="DataTD"><?=$drow['points']?></td>
|
||||||
<td class="DataTD"><?=$drow['location']?></td>
|
<td class="DataTD"><?=$drow['location']?></td>
|
||||||
<td class="DataTD"><?=$drow['method']?></td>
|
<td class="DataTD"><?=$drow['method']?></td>
|
||||||
<td class="DataTD"><a href="account.php?id=43&userid=<?=$drow['from']?>&assurance=<?=$drow['id']?>&csrf=<?=make_csrf('admdelassurance')?>" onclick="return confirm('<?=_("Are you sure you want to revoke this assurance?")?>');"><?=_("Revoke")?></a></td>
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=$drow['from']?>&assurance=<?=$drow['id']?>&csrf=<?=make_csrf('admdelassurance')?>" onclick="return confirm('<?=sprintf(_("Are you sure you want to revoke the assurance with ID "%s"?"),$drow['id'])?>');"><?=_("Revoke")?></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? } ?>
|
<? } ?>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Reference in a new issue