From adac80a1ba257ebc0d34f0c83070dea9d93c592e Mon Sep 17 00:00:00 2001 From: Zach Neumann Date: Wed, 15 May 2024 09:40:10 -0600 Subject: [PATCH] remove more clean --- agent/fw_yii.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/agent/fw_yii.c b/agent/fw_yii.c index ad51482e4..9de4ec6d3 100644 --- a/agent/fw_yii.c +++ b/agent/fw_yii.c @@ -92,9 +92,9 @@ NR_PHP_WRAPPER_END void nr_yii1_enable(TSRMLS_D) { #if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \ && !defined OVERWRITE_ZEND_EXECUTE_DATA - nr_php_wrap_user_function_before_after_clean( + nr_php_wrap_user_function_before_after( NR_PSTR("CAction::runWithParams"), nr_yii1_runWithParams_wrapper, NULL); - nr_php_wrap_user_function_before_after_clean( + nr_php_wrap_user_function_before_after( NR_PSTR("CInlineAction::runWithParams"), nr_yii1_runWithParams_wrapper, NULL); #else @@ -194,12 +194,12 @@ NR_PHP_WRAPPER_END void nr_yii2_enable(TSRMLS_D) { #if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \ && !defined OVERWRITE_ZEND_EXECUTE_DATA - nr_php_wrap_user_function_before_after_clean( + nr_php_wrap_user_function_before_after( NR_PSTR("yii\\base\\Action::runWithParams"), - nr_yii2_runWithParams_wrapper, NULL, NULL); - nr_php_wrap_user_function_before_after_clean( + nr_yii2_runWithParams_wrapper, NULL); + nr_php_wrap_user_function_before_after( NR_PSTR("yii\\base\\InlineAction::runWithParams"), - nr_yii2_runWithParams_wrapper, NULL, NULL); + nr_yii2_runWithParams_wrapper, NULL); #else nr_php_wrap_user_function(NR_PSTR("yii\\base\\Action::runWithParams"), nr_yii2_runWithParams_wrapper TSRMLS_CC);