Skip to content

Commit 27ce8d4

Browse files
Merge pull request #17887 from CommanderRoot/fix-single-column-change
Fix broken single column change page introduced by #17862
2 parents 7e3dcdb + 0f215ed commit 27ce8d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libraries/classes/Controllers/Table/Structure/ChangeController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function __construct(
3838

3939
public function __invoke(ServerRequest $request): void
4040
{
41-
if ($request->getParsedBodyParam('change_column') !== null) {
41+
if ($request->getParam('change_column') !== null) {
4242
$this->displayHtmlForColumnChange([$request->getParam('field')]);
4343

4444
return;

0 commit comments

Comments
 (0)