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:
authorTobias Speicher <rootcommander@gmail.com>2022-11-09 13:06:02 +0300
committerTobias Speicher <rootcommander@gmail.com>2022-11-09 13:06:02 +0300
commit0f215ed0f685c43c5f8bd7c87bb74e372d61a4fe (patch)
treee399f446a82d8c5e0ec283e5361385b3ad5974dc
parenta0e4afff04f52e31b351fe30efa7c003f23962fc (diff)
Fix broken single column change page introduced by #17862
Signed-off-by: Tobias Speicher <rootcommander@gmail.com>
-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;