From 70a84c25760dca8a3db8b78ee273216c522cc0e7 Mon Sep 17 00:00:00 2001 From: Tiago Barrionuevo Date: Sat, 30 Jan 2016 03:16:12 -0200 Subject: Dynamic DNS URL for NO-IP needs to be updated. --- src/usr/local/www/services_dyndns_edit.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/usr/local') diff --git a/src/usr/local/www/services_dyndns_edit.php b/src/usr/local/www/services_dyndns_edit.php index e28dc3e..52e90e9 100644 --- a/src/usr/local/www/services_dyndns_edit.php +++ b/src/usr/local/www/services_dyndns_edit.php @@ -146,6 +146,13 @@ if ($_POST) { $host_to_check = substr($_POST['host'], 2); } else { $host_to_check = $_POST['host']; + + /* No-ip (and maybe others) can have a @ in hostname */ + $last_to_check = strrpos($host_to_check, '@'); + if ($last_to_check !== false) { + $host_to_check = substr_replace($host_to_check, '.', $last_to_check, 1); + } + unset($last_to_check); } if ($pconfig['type'] != "custom" && $pconfig['type'] != "custom-v6") { -- cgit v1.1