mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Fix variable used to create description when deleting a route, put the network in the description as intended.
This commit is contained in:
parent
9f66bc5ec8
commit
a73ba11b3c
@ -80,7 +80,7 @@ if ($_POST) {
|
||||
|
||||
if ($_GET['act'] == "del") {
|
||||
if ($a_routes[$_GET['id']]) {
|
||||
$changedesc .= gettext("removed route to") . " " . $a_routes[$_GET['id']]['route'];
|
||||
$changedesc .= gettext("removed route to") . " " . $a_routes[$_GET['id']]['network'];
|
||||
|
||||
$targets = array();
|
||||
if (is_alias($a_routes[$_GET['id']]['network'])) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user