From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] dns.cgi: Fix ID and greater than checks. Date: Tue, 14 Jan 2020 13:53:59 +0100 Message-ID: <20200114125359.121861-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8294139988692766036==" List-Id: --===============8294139988692766036== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Stefan Schantl --- html/cgi-bin/dns.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/cgi-bin/dns.cgi b/html/cgi-bin/dns.cgi index 385c7be44..11415cdf8 100755 --- a/html/cgi-bin/dns.cgi +++ b/html/cgi-bin/dns.cgi @@ -634,7 +634,7 @@ END # Nameservers with an ID's of one or two are ISP assigned, # and we cannot perform any actions on them, so hide the tools for # them. - if ($id gt "2") { + if ($id > 2) { =20 print < @@ -677,7 +677,7 @@ END print"\n"; =20 # Check if the usage of the ISP nameservers is enabled and there are more = than 2 servers. - if (($settings{'USE_ISP_NAMESERVERS'} eq "on") && ($server_amount gt "2"))= { + if (($settings{'USE_ISP_NAMESERVERS'} eq "on") && ($server_amount > 2)) { print < --=20 2.25.0.rc0 --===============8294139988692766036==--
  $Lang::tr{'legend'}: