From 7b9d5a29aa4bfd172221ea185319168c1bfbfee0 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 23 Jan 2018 10:52:57 +0100 Subject: [PATCH] Decrease float precision (bug #578) --- adminer/include/bootstrap.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/include/bootstrap.inc.php b/adminer/include/bootstrap.inc.php index de68a6bc..a7ba0513 100644 --- a/adminer/include/bootstrap.inc.php +++ b/adminer/include/bootstrap.inc.php @@ -54,7 +54,7 @@ if (get_magic_quotes_runtime()) { } @set_time_limit(0); // @ - can be disabled @ini_set("zend.ze1_compatibility_mode", false); // @ - deprecated -@ini_set("precision", 20); // @ - can be disabled +@ini_set("precision", 17); // @ - can be disabled, 17 - internal PHP precision include "../adminer/include/lang.inc.php"; include "../adminer/lang/$LANG.inc.php";