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
If I do a search with multiple tags the pagination is broken.
I see that in phpmyfaq/inc/PMF/Faq.php on line 506 there is a filterInput() function with 'FILTER_VALIDATE_INT' parameter but the URL of a search with multiple tags is something like phpmyfaq/?action=search&tagging_id=1,2.
I solved passing 'FILTER_DEFAULT' as the third parameters of filterInput() function that check only strings
The text was updated successfully, but these errors were encountered:
If I do a search with multiple tags the pagination is broken.
I see that in phpmyfaq/inc/PMF/Faq.php on line 506 there is a filterInput() function with 'FILTER_VALIDATE_INT' parameter but the URL of a search with multiple tags is something like phpmyfaq/?action=search&tagging_id=1,2.
I solved passing 'FILTER_DEFAULT' as the third parameters of filterInput() function that check only strings
The text was updated successfully, but these errors were encountered: