Commit 5fac1c16 authored by Franco Fichtner's avatar Franco Fichtner

firewall: fix schedule cloning; closes #943

(cherry picked from commit 1842f0e1)
parent 9d1b8eb6
...@@ -115,7 +115,7 @@ $main_buttons = array( ...@@ -115,7 +115,7 @@ $main_buttons = array(
<?php if (isset($savemsg)) print_info_box($savemsg); ?> <?php if (isset($savemsg)) print_info_box($savemsg); ?>
<section class="col-xs-12"> <section class="col-xs-12">
<div class="content-box tab-content"> <div class="content-box tab-content">
<form action="firewall_schedule.php" method="post" name="iform" id="iform"> <form method="post" name="iform" id="iform">
<input type="hidden" id="id" name="id" value="" /> <input type="hidden" id="id" name="id" value="" />
<input type="hidden" id="action" name="act" value="" /> <input type="hidden" id="action" name="act" value="" />
<table class="table table-striped"> <table class="table table-striped">
...@@ -237,7 +237,7 @@ $main_buttons = array( ...@@ -237,7 +237,7 @@ $main_buttons = array(
<a id="del_<?=$i;?>" title="<?=gettext("delete schedule"); ?>" data-toggle="tooltip" class="act_delete btn btn-default btn-xs"> <a id="del_<?=$i;?>" title="<?=gettext("delete schedule"); ?>" data-toggle="tooltip" class="act_delete btn btn-default btn-xs">
<span class="fa fa-trash text-muted"></span> <span class="fa fa-trash text-muted"></span>
</a> </a>
<a href="firewall_schedule.php?dup=<?=$i;?>" class="btn btn-default btn-xs" data-toggle="tooltip" title="<?=gettext("clone schedule");?>"> <a href="firewall_schedule_edit.php?dup=<?=$i;?>" class="btn btn-default btn-xs" data-toggle="tooltip" title="<?=gettext("clone schedule");?>">
<span class="fa fa-clone text-muted"></span> <span class="fa fa-clone text-muted"></span>
</a> </a>
</td> </td>
......
...@@ -781,7 +781,7 @@ function removeRow(el) { ...@@ -781,7 +781,7 @@ function removeRow(el) {
<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?> <?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
<section class="col-xs-12"> <section class="col-xs-12">
<div class="content-box tab-content"> <div class="content-box tab-content">
<form action="firewall_schedule_edit.php" method="post" name="iform" id="iform"> <form method="post" name="iform" id="iform">
<input type="hidden" name="schedlabel" value="<?=$pconfig['schedlabel'];?>"/> <input type="hidden" name="schedlabel" value="<?=$pconfig['schedlabel'];?>"/>
<table class="table table-striped"> <table class="table table-striped">
<tbody> <tbody>
......
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