Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Escape MySQL wildcards (%) and (_) in search queries #815

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

jeffersonsalvador
Copy link

Problem

When searching for values containing MySQL wildcards (% and _), these characters are interpreted as wildcard patterns rather than literal characters, resulting in incorrect query results.

Solution

  • Added addcslashes() to escape % and _ in search terms before they are used in LIKE or ILIKE queries.
  • Ensures these characters are treated as literals during the search process.

Testing

  • Verified locally that searches with % or _ return accurate results without unintended wildcard behavior.
  • Ensured no regression in existing query functionality.

Contribution

This change adheres to the PSR-2 coding standards and follows the contribution guidelines outlined in the repository.

Fixes #814

@jeffersonsalvador jeffersonsalvador changed the base branch from develop to master November 26, 2024 13:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant