We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a23e1be commit 44bd90aCopy full SHA for 44bd90a
1 file changed
src/Command.php
@@ -597,7 +597,7 @@ public function queries( $args, $assoc_args ) {
597
// Normalize callback for comparison
598
$normalized_callback = trim((string) $logger->callback);
599
$normalized_filter = trim($callback);
600
- if ( false === stripos( $normalized_callback, $normalized_filter ) ) {
+ if ( 0 !== strcasecmp( $normalized_callback, $normalized_filter ) ) {
601
continue;
602
}
603
0 commit comments