summaryrefslogtreecommitdiffstats
path: root/usr/local/www/system_routes.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2014-02-26 13:24:17 -0500
committerjim-p <jimp@pfsense.org>2014-02-26 13:24:17 -0500
commita73ba11b3cdd6fc04fc92be2969a5cd87f69c68b (patch)
tree2bfdf24888bf3fadfcb6545dbe62c62dbf361008 /usr/local/www/system_routes.php
parent9f66bc5ec84cd0f3ae02558988f653bb643de0b2 (diff)
downloadpfsense-a73ba11b3cdd6fc04fc92be2969a5cd87f69c68b.zip
pfsense-a73ba11b3cdd6fc04fc92be2969a5cd87f69c68b.tar.gz
Fix variable used to create description when deleting a route, put the network in the description as intended.
Diffstat (limited to 'usr/local/www/system_routes.php')
-rwxr-xr-xusr/local/www/system_routes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/system_routes.php b/usr/local/www/system_routes.php
index b5dd849..3f246e2 100755
--- a/usr/local/www/system_routes.php
+++ b/usr/local/www/system_routes.php
@@ -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'])) {
OpenPOWER on IntegriCloud