mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-13 16:14:40 +00:00
cleanup, remove unwanted form action tags.
This commit is contained in:
parent
7665d2bc7f
commit
2d59e700db
@ -61,7 +61,7 @@ include("head.inc");
|
||||
<div class="container-fluid tab-content">
|
||||
<div class="tab-pane active" id="system">
|
||||
<?php if (isset($savemsg)) print_info_box($savemsg); ?>
|
||||
<form action="<?=$_SERVER['REQUEST_URI'];?>" method="post">
|
||||
<form method="post">
|
||||
<br/>
|
||||
<input name="statetable" type="checkbox" id="statetable" value="yes" checked="checked" />
|
||||
<?= gettext("Firewall state table"); ?><br/><br/>
|
||||
|
||||
@ -102,7 +102,7 @@ $( document ).ready(function() {
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="table-responsive">
|
||||
<form method="post" action="<?=$_SERVER['REQUEST_URI'];?>">
|
||||
<form method="post">
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
@ -181,7 +181,7 @@ if($need_alert_display == true) {
|
||||
<ul class="list-inline">
|
||||
<li><h1><?= gentitle($menuBreadcrumbs) ?></h1></li>
|
||||
<li class="btn-group-container">
|
||||
<form action="<?=$_SERVER['REQUEST_URI'];?>" method="post">
|
||||
<form method="post">
|
||||
<?php
|
||||
if (isset($service_hook)) {
|
||||
$ssvc = service_by_name($service_hook);
|
||||
|
||||
@ -306,7 +306,7 @@ foreach ($config['ipsec']['phase1'] as $ph1ent) {
|
||||
|
||||
function print_legacy_box($msg, $name, $value)
|
||||
{
|
||||
$savebutton = "<form action=\"".$_SERVER['REQUEST_URI']."\" method=\"post\">";
|
||||
$savebutton = "<form method=\"post\">";
|
||||
$savebutton .= "<input name=\"{$name}\" type=\"submit\" class=\"btn btn-default\" id=\"{$name}\" value=\"{$value}\" />";
|
||||
if (!empty($_POST['if'])) {
|
||||
$savebutton .= "<input type=\"hidden\" name=\"if\" value=\"" . htmlspecialchars($_POST['if']) . "\" />";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user