Commit 75ce2254 authored by Manuel Faux's avatar Manuel Faux

unbound: fixed UX on domain overrides

Added double click to edit domain override entry.
parent 12353e8f
......@@ -200,13 +200,13 @@ include_once("head.inc");
<tbody>
<?php $i = 0; foreach ($a_domainOverrides as $doment): ?>
<tr>
<td class="listlr">
<td class="listlr" ondblclick="document.location='services_unbound_domainoverride_edit.php?id=<?=$i;?>';">
<?=strtolower($doment['domain']);?>&nbsp;
</td>
<td class="listr">
<td class="listr" ondblclick="document.location='services_unbound_domainoverride_edit.php?id=<?=$i;?>';">
<?=$doment['ip'];?>&nbsp;
</td>
<td class="listbg">
<td class="listbg" ondblclick="document.location='services_unbound_domainoverride_edit.php?id=<?=$i;?>';">
<?=htmlspecialchars($doment['descr']);?>&nbsp;
</td>
<td valign="middle" class="list nowrap">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment