From ec734303777fdc01e36eff4fa7bac48edbc83cd3 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Thu, 16 Sep 2021 14:15:58 +0200 Subject: [PATCH] fix ws --- php_json_post.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php_json_post.c b/php_json_post.c index fd7f972..772018d 100644 --- a/php_json_post.c +++ b/php_json_post.c @@ -25,7 +25,7 @@ ZEND_DECLARE_MODULE_GLOBALS(json_post); PHP_INI_BEGIN() - STD_PHP_INI_ENTRY("json_post.flags", "1", PHP_INI_PERDIR, OnUpdateLong, flags, zend_json_post_globals, json_post_globals) + STD_PHP_INI_ENTRY("json_post.flags", "1", PHP_INI_PERDIR, OnUpdateLong, flags, zend_json_post_globals, json_post_globals) STD_PHP_INI_ENTRY("json_post.error_response", "0", PHP_INI_PERDIR, OnUpdateLong, error_response, zend_json_post_globals, json_post_globals) STD_PHP_INI_ENTRY("json_post.error_exit", "0", PHP_INI_PERDIR, OnUpdateBool, error_exit, zend_json_post_globals, json_post_globals) PHP_INI_END() -- 2.30.2