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
Describe the bug
After the latest updates, the experimental autocomplete search widget to connect posts is broken. When typing in the input field, no posts are shown.
To Reproduce
Steps to reproduce the behavior:
Enable the experimental autocomplete inputs feature
Edit a post
Search for a post title in the connected sites
No posts are returned
Environment (please complete the following information):
PHP Version 8.2
Plugin Version 2.8.1
Fix
After some debugging it seems that in the suggest() method, query vars are retrieved from the GET object, though the autocomplete request method ist POST.
Describe the bug
After the latest updates, the experimental autocomplete search widget to connect posts is broken. When typing in the input field, no posts are shown.
To Reproduce
Steps to reproduce the behavior:
Environment (please complete the following information):
Fix
After some debugging it seems that in the
suggest()
method, query vars are retrieved from the GET object, though the autocomplete request method ist POST.Multisite-Language-Switcher/includes/MslsMetaBox.php
Line 20 in 5e89e49
Switching from
INPUT_GET
toINPUT_POST
in this method fixes the bug.The text was updated successfully, but these errors were encountered: