mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Automatically replace spaces with "" for queue names
This commit is contained in:
parent
2a26470d6e
commit
cb24ec3273
@ -69,7 +69,7 @@ if ($_POST) {
|
||||
$queue['schedulertype'] = $_POST['scheduler'];
|
||||
$queue['bandwidth'] = $_POST['bandwidth'];
|
||||
$queue['priority'] = $_POST['priority'];
|
||||
$queue['name'] = $_POST['name'];
|
||||
$queue['name'] = ereg_replace(" ", "", $_POST['name']);
|
||||
|
||||
$scheduleroptions="";
|
||||
if($_POST['red'] == "on")
|
||||
|
||||
Loading…
Reference in New Issue
Block a user