Branch: refs/heads/master Home: https://github.com/phpmyadmin/phpmyadmin Commit: 12ff061018efc6ed01afad13124fc12a2d3dae82 https://github.com/phpmyadmin/phpmyadmin/commit/12ff061018efc6ed01afad13124f... Author: Thomas Vincent <thomasvincent@gmail.com> Date: 2026-02-28 (Sat, 02 February 2026) -08:00 Changed paths: M src/Controllers/Database/SearchController.php Log Message: ----------- fix(SearchController): replace superglobal with ServerRequest->has() Replace `empty($_REQUEST['ajax_page_request'])` with `! $request->has('ajax_page_request')` to use the injected ServerRequest consistently. Signed-off-by: Thomas Vincent <thomasvincent@gmail.com> Commit: c3e2ecf80dbf02bfe3f6ec53f3017bdda47d253c https://github.com/phpmyadmin/phpmyadmin/commit/c3e2ecf80dbf02bfe3f6ec53f301... Author: Thomas Vincent <thomasvincent@gmail.com> Date: 2026-02-28 (Sat, 02 February 2026) -08:00 Changed paths: M phpstan-baseline.neon M psalm-baseline.xml Log Message: ----------- fix: update static analysis baselines for SearchController Signed-off-by: Thomas Vincent <thomasvincent@gmail.com> Commit: f0f71c5706352d682dd989f55a8f6f7a0016d2dc https://github.com/phpmyadmin/phpmyadmin/commit/f0f71c5706352d682dd989f55a8f... Author: MaurĂcio Meneghini Fauth <mauricio@mfauth.com.br> Date: 2026-03-02 (Mon, 03 March 2026) -03:00 Changed paths: M phpstan-baseline.neon M psalm-baseline.xml M src/Controllers/Database/SearchController.php Log Message: ----------- Merge pull request #20122 from thomasvincent/fix/serverrequest-search-controller fix: migrate $_REQUEST to ServerRequest in SearchController