You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WP/CronInterval: make callback function name lookup case-insensitive
The sniff was incorrectly treating callback function names as case-sensitive when trying to locate the callback function definition. This led to false positives when the callback reference case did not match the function declaration case.
The fix ensures callback names are compared case-insensitively using `strcasecmp()` when searching for function declarations in the code.
0 commit comments