diff options
author | jim-p <jimp@pfsense.org> | 2012-06-01 08:16:30 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2012-06-01 08:16:30 -0400 |
commit | 06392e406a2ea9f159ebc8d52db87344d14d9091 (patch) | |
tree | 8cd88788565cf44d32b65825d19349e78fbd5d9f | |
parent | 31bdb9e51cf26424fb7a7d40ad4a812edcc092c6 (diff) | |
download | pfsense-06392e406a2ea9f159ebc8d52db87344d14d9091.zip pfsense-06392e406a2ea9f159ebc8d52db87344d14d9091.tar.gz |
Fix function call name
-rwxr-xr-x | usr/local/www/system_routes_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/system_routes_edit.php b/usr/local/www/system_routes_edit.php index dfef30a..586e2d2 100755 --- a/usr/local/www/system_routes_edit.php +++ b/usr/local/www/system_routes_edit.php @@ -129,7 +129,7 @@ if ($_POST) { $tgt .= "/128"; if (!is_subnet($tgt)) continue; - if (!is_subnet_v6($tgt)) + if (!is_subnetv6($tgt)) continue; $new_targets[] = $tgt; } |