From f6846a47d42e28de8b1e01d156857b3089c692bd Mon Sep 17 00:00:00 2001 From: doktornotor Date: Thu, 6 Aug 2015 06:28:41 +0200 Subject: Fix remotename validation (Bug #4922) --- config/nut/nut.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config/nut') diff --git a/config/nut/nut.inc b/config/nut/nut.inc index dae2269e..578bb82f 100644 --- a/config/nut/nut.inc +++ b/config/nut/nut.inc @@ -126,7 +126,7 @@ if (!$post['remotename']) { $input_errors[] = 'You must specify a name in the \'Remote UPS Name\' field'; } - if ($post['remotename'] && !preg_match("/^[a-zA-Z0-9-_]+$/", $post['name'])) { + if ($post['remotename'] && !preg_match("/^[a-zA-Z0-9-_]+$/", $post['remotename'])) { $input_errors[] = 'Only [Aa-Zz], [0-9], and [-_] accepted in the \'Remote UPS Name\' field'; } if (!$post['remoteaddr'] || !is_ipaddr($post['remoteaddr'])) { -- cgit v1.2.3