From 65ea2ecf27418feaf7681a02d74168d0d82626fb Mon Sep 17 00:00:00 2001 From: mcramer <m.cramer@pixcept.de> Date: Thu, 13 Sep 2012 12:28:26 -0400 Subject: [PATCH] Fixed/Implemented: replaced intval() by $app->functions->intval() in all interface functions due to big number problem in intval() --- interface/web/dns/form/dns_mx.tform.php | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/interface/web/dns/form/dns_mx.tform.php b/interface/web/dns/form/dns_mx.tform.php index 9afc26c..df8ef72 100644 --- a/interface/web/dns/form/dns_mx.tform.php +++ b/interface/web/dns/form/dns_mx.tform.php @@ -33,6 +33,8 @@ */ +global $app; + $form["title"] = "DNS mx"; $form["description"] = ""; $form["name"] = "dns_mx"; @@ -69,7 +71,7 @@ 'zone' => array ( 'datatype' => 'INTEGER', 'formtype' => 'TEXT', - 'default' => @intval($_REQUEST["zone"]), + 'default' => @$app->functions->intval($_REQUEST["zone"]), 'value' => '', 'width' => '30', 'maxlength' => '255' -- Gitblit v1.9.1