Commit f89ab7ff authored by Ad Schellevis's avatar Ad Schellevis
parent 4b9ea9c7
...@@ -42,7 +42,6 @@ function &get_reference_to_me_in_config(&$mypath) ...@@ -42,7 +42,6 @@ function &get_reference_to_me_in_config(&$mypath)
foreach ($mypath as $indeks) { foreach ($mypath as $indeks) {
$ptr =& $ptr['queue'][$indeks]; $ptr =& $ptr['queue'][$indeks];
} }
return $ptr; return $ptr;
} }
...@@ -4307,9 +4306,6 @@ function read_altq_config() { ...@@ -4307,9 +4306,6 @@ function read_altq_config() {
$altq_list_queues = array(); $altq_list_queues = array();
if (!is_array($config['shaper']['queue']))
return;
foreach ($a_int as $key => $conf) { foreach ($a_int as $key => $conf) {
$int = $conf['interface']; $int = $conf['interface'];
$root =& new altq_root_queue(); $root =& new altq_root_queue();
......
...@@ -45,7 +45,7 @@ function listtags() ...@@ -45,7 +45,7 @@ function listtags()
'npt', 'ntpserver', 'npt', 'ntpserver',
'onetoone', 'openvpn-server', 'openvpn-client', 'openvpn-csc', 'option', 'onetoone', 'openvpn-server', 'openvpn-client', 'openvpn-csc', 'option',
'package', 'passthrumac', 'phase1', 'phase2', 'ppp', 'pppoe', 'priv', 'proxyarpnet', 'pool', 'pages', 'pipe', 'package', 'passthrumac', 'phase1', 'phase2', 'ppp', 'pppoe', 'priv', 'proxyarpnet', 'pool', 'pages', 'pipe',
'qinqentry', 'queue', 'qinqentry',
'radnsserver', 'roll', 'route', 'row', 'rrddatafile', 'rule', 'radnsserver', 'roll', 'route', 'row', 'rrddatafile', 'rule',
'schedule', 'service', 'servernat', 'servers', 'serversdisabled', 'staticmap', 'subqueue', 'schedule', 'service', 'servernat', 'servers', 'serversdisabled', 'staticmap', 'subqueue',
'tab', 'timerange', 'tunnel', 'tab', 'timerange', 'tunnel',
......
...@@ -58,8 +58,11 @@ if ($_GET) { ...@@ -58,8 +58,11 @@ if ($_GET) {
$action = htmlspecialchars($_GET['action']); $action = htmlspecialchars($_GET['action']);
} }
if ($_POST) { if ($_POST) {
if ($_POST['name']) if (isset($_POST['name']) && trim($_POST['name']) != '') {
$qname = htmlspecialchars(trim($_POST['name'])); $qname = htmlspecialchars(trim($_POST['name']));
} else {
$qname = htmlspecialchars(trim($_POST['newname']));
}
if ($_POST['interface']) if ($_POST['interface'])
$interface = htmlspecialchars(trim($_POST['interface'])); $interface = htmlspecialchars(trim($_POST['interface']));
if ($_POST['parentqueue']) if ($_POST['parentqueue'])
......
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