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_soa.tform.php | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/interface/web/dns/form/dns_soa.tform.php b/interface/web/dns/form/dns_soa.tform.php index 16e9b11..175bb12 100644 --- a/interface/web/dns/form/dns_soa.tform.php +++ b/interface/web/dns/form/dns_soa.tform.php @@ -37,6 +37,7 @@ */ +global $app; $form["title"] = "DNS Zone"; $form["description"] = ""; @@ -250,7 +251,7 @@ 'class' => 'plugin_listview', 'options' => array( 'listdef' => 'list/dns_a.list.php', - 'sqlextwhere' => "zone = ".@intval(@$_REQUEST['id']), + 'sqlextwhere' => "zone = ".@$app->functions->intval(@$_REQUEST['id']), 'sql_order_by' => "ORDER BY type, name" ) ) -- Gitblit v1.9.1