From c8bd769d9563e16d715a01ee214aaa597a764612 Mon Sep 17 00:00:00 2001 From: Go Kudo Date: Thu, 19 Sep 2024 11:32:03 +0000 Subject: [PATCH] remove debug comment --- ext/hook.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ext/hook.c b/ext/hook.c index 0ef3059..09dd578 100644 --- a/ext/hook.c +++ b/ext/hook.c @@ -697,7 +697,6 @@ static void hook_strtotime(INTERNAL_FUNCTION_PARAMETERS) is_fixed_ret = is_fixed_time_str(times, NULL); if (!preset_ts_is_null || is_fixed_ret == 1 || is_fixed_ret == FAILURE) { - //php_error_docref(NULL, E_NOTICE, "hook_strtotime is calling original function (%s, %ld)", ZSTR_VAL(times), preset_ts); CALL_ORIGINAL_FUNCTION(strtotime); return; } @@ -706,7 +705,6 @@ static void hook_strtotime(INTERNAL_FUNCTION_PARAMETERS) zval params[2]; ZVAL_STR(¶ms[0], times); ZVAL_LONG(¶ms[1], get_shifted_time(NULL)); - //php_error_docref(NULL, E_NOTICE, "hook_strtotime is calling original function with params (%s, %ld)", Z_STRVAL_P(¶ms[0]), Z_LVAL_P(¶ms[1])); CALL_ORIGINAL_FUNCTION_WITH_PARAMS(strtotime, params, 2); }