@@ -92,9 +92,9 @@ NR_PHP_WRAPPER_END
92
92
void nr_yii1_enable (TSRMLS_D ) {
93
93
#if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \
94
94
&& !defined OVERWRITE_ZEND_EXECUTE_DATA
95
- nr_php_wrap_user_function_before_after_clean (
95
+ nr_php_wrap_user_function_before_after (
96
96
NR_PSTR ("CAction::runWithParams" ), nr_yii1_runWithParams_wrapper , NULL );
97
- nr_php_wrap_user_function_before_after_clean (
97
+ nr_php_wrap_user_function_before_after (
98
98
NR_PSTR ("CInlineAction::runWithParams" ), nr_yii1_runWithParams_wrapper ,
99
99
NULL );
100
100
#else
@@ -194,12 +194,12 @@ NR_PHP_WRAPPER_END
194
194
void nr_yii2_enable (TSRMLS_D ) {
195
195
#if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \
196
196
&& !defined OVERWRITE_ZEND_EXECUTE_DATA
197
- nr_php_wrap_user_function_before_after_clean (
197
+ nr_php_wrap_user_function_before_after (
198
198
NR_PSTR ("yii\\base\\Action::runWithParams" ),
199
- nr_yii2_runWithParams_wrapper , NULL , NULL );
200
- nr_php_wrap_user_function_before_after_clean (
199
+ nr_yii2_runWithParams_wrapper , NULL );
200
+ nr_php_wrap_user_function_before_after (
201
201
NR_PSTR ("yii\\base\\InlineAction::runWithParams" ),
202
- nr_yii2_runWithParams_wrapper , NULL , NULL );
202
+ nr_yii2_runWithParams_wrapper , NULL );
203
203
#else
204
204
nr_php_wrap_user_function (NR_PSTR ("yii\\base\\Action::runWithParams" ),
205
205
nr_yii2_runWithParams_wrapper TSRMLS_CC );
0 commit comments