Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurĂ­cio Meneghini Fauth <mauricio@fauth.dev>2022-11-09 18:21:47 +0300
committerGitHub <noreply@github.com>2022-11-09 18:21:47 +0300
commit27ce8d46ef16e821895e817e18ca1764a911d4ae (patch)
tree560aadf5cc432ae9373d20e4e8d195fc2bce2ecb
parent7e3dcdb29da1b75b59084833d906aefa70390e41 (diff)
parent0f215ed0f685c43c5f8bd7c87bb74e372d61a4fe (diff)
Merge pull request #17887 from CommanderRoot/fix-single-column-change
Fix broken single column change page introduced by #17862
-rw-r--r--libraries/classes/Controllers/Table/Structure/ChangeController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/classes/Controllers/Table/Structure/ChangeController.php b/libraries/classes/Controllers/Table/Structure/ChangeController.php
index 938134ab11..6f844dd63c 100644
--- a/libraries/classes/Controllers/Table/Structure/ChangeController.php
+++ b/libraries/classes/Controllers/Table/Structure/ChangeController.php
@@ -38,7 +38,7 @@ final class ChangeController extends AbstractController
public function __invoke(ServerRequest $request): void
{
- if ($request->getParsedBodyParam('change_column') !== null) {
+ if ($request->getParam('change_column') !== null) {
$this->displayHtmlForColumnChange([$request->getParam('field')]);
return;