mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
net/igmp-proxy: merge version 1.3 from master
This commit is contained in:
parent
400658fc34
commit
c509f90237
4 changed files with 4 additions and 4 deletions
|
|
@ -1,5 +1,5 @@
|
|||
PLUGIN_NAME= igmp-proxy
|
||||
PLUGIN_VERSION= 1.2
|
||||
PLUGIN_VERSION= 1.3
|
||||
PLUGIN_DEPENDS= igmpproxy
|
||||
PLUGIN_COMMENT= IGMP-Proxy Service
|
||||
PLUGIN_MAINTAINER= franco@opnsense.org
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ EOD;
|
|||
|
||||
if ($igmpcf['address'] <> "") {
|
||||
$item = explode(" ", $igmpcf['address']);
|
||||
foreach($item as $iww) {
|
||||
foreach ($item as $iww) {
|
||||
$igmpconf .= "altnet {$iww}\n";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<menu>
|
||||
<Services>
|
||||
<IGMPProxy VisibleName="IGMP Proxy" url="/services_igmpproxy.php" cssClass="fa fa-map-signs fa-fw">
|
||||
<Edit url="/services_igmpproxy_edit.php" visibility="hidden"/>
|
||||
<Edit url="/services_igmpproxy_edit.php*" visibility="hidden"/>
|
||||
</IGMPProxy>
|
||||
</Services>
|
||||
</menu>
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ $main_buttons = array(
|
|||
<td><?=$igmpentry['descr'];?></td>
|
||||
<td>
|
||||
<a href="services_igmpproxy_edit.php?id=<?=$i;?>" title="<?=gettext("Edit this IGMP entry"); ?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil"></span></a>
|
||||
<a href="#" data-id="<?=$i;?>" class="act_delete_entry"><button type="button" class="btn btn-xs btn-default"><span class="fa fa-trash text-muted"></span></button></a>
|
||||
<a href="#" data-id="<?=$i;?>" class="act_delete_entry btn btn-xs btn-default"><i class="fa fa-trash text-muted"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
|
|
|
|||
Loading…
Reference in a new issue