Remove ineffective alt="..."

This commit is contained in:
DL6ER
2017-01-31 22:53:19 +01:00
parent 250389126d
commit a21b5e1cd9
+1 -1
View File
@@ -366,7 +366,7 @@
</tr>
</thead>
<tbody>
<?php foreach($dhcp_static_leases as $lease) { ?><tr><td><?php echo $lease["hwaddr"]; ?></td><td><?php echo $lease["IP"]; ?></td><td><?php echo $lease["host"]; ?></td><td><?php if(strlen($lease["hwaddr"]) > 0){ ?><button class="btn btn-danger btn-xs" type="submit" name="removestatic" value="<?php echo $lease["hwaddr"]; ?>" alt="Copy data to static leases table"><span class="glyphicon glyphicon-trash"></span></button><?php } ?></td></tr><?php } ?>
<?php foreach($dhcp_static_leases as $lease) { ?><tr><td><?php echo $lease["hwaddr"]; ?></td><td><?php echo $lease["IP"]; ?></td><td><?php echo $lease["host"]; ?></td><td><?php if(strlen($lease["hwaddr"]) > 0){ ?><button class="btn btn-danger btn-xs" type="submit" name="removestatic" value="<?php echo $lease["hwaddr"]; ?>"><span class="glyphicon glyphicon-trash"></span></button><?php } ?></td></tr><?php } ?>
</tbody>
<tfoot style="display: table-row-group">
<tr><td><input type="text" name="AddMAC" id="AddMAC"></td><td><input type="text" name="AddIP" id="AddIP"></td><td><input type="text" name="AddHostname" id="AddHostname" value=""></td><td><button class="btn btn-success btn-xs" type="submit" name="addstatic"><span class="glyphicon glyphicon-plus"></span></button></td></tr>