From f9f456a9cd58ae8eda8b62d37da7a6dea913fd4a Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Thu, 10 May 2007 09:53:36 +0000 Subject: MFH: bcmath.scale must be greater or equal to zero --- ext/bcmath/bcmath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/bcmath') diff --git a/ext/bcmath/bcmath.c b/ext/bcmath/bcmath.c index 06e468a514..f3dfd83833 100644 --- a/ext/bcmath/bcmath.c +++ b/ext/bcmath/bcmath.c @@ -142,7 +142,7 @@ ZEND_GET_MODULE(bcmath) /* {{{ PHP_INI */ PHP_INI_BEGIN() - STD_PHP_INI_ENTRY("bcmath.scale", "0", PHP_INI_ALL, OnUpdateLong, bc_precision, zend_bcmath_globals, bcmath_globals) + STD_PHP_INI_ENTRY("bcmath.scale", "0", PHP_INI_ALL, OnUpdateLongGEZero, bc_precision, zend_bcmath_globals, bcmath_globals) PHP_INI_END() /* }}} */ -- cgit v1.2.1