Actions
Bug #95078
closedTypeError in MoveElementController when using sqlite
Start date:
2021-09-02
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
7.4
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Steps to reproduce:
- Use SQLite
- Go to List Module
- Click on "…" Button to open further actions
- Click on "Display change history / Un-do"
An PHP TypeError is thrown:
(1/1) TypeError Typed property TYPO3\CMS\Backend\Controller\ContentElement\MoveElementController::$page_id must be int, string used typo3/sysext/backend/Classes/Controller/ContentElement/MoveElementController.php line 114 $assigns['makeCopyChecked'] = (bool)$this->makeCopy; $assigns['makeCopyUrl'] = GeneralUtility::linkThisScript(['makeCopy' => !$this->makeCopy]); // Get page record (if accessible): if ($this->table !== 'pages' && $this->moveUid === $this->page_id) { $this->page_id = $elRow['pid']; } $pageInfo = BackendUtility::readPageAccess($this->page_id, $this->perms_clause); $assigns['pageInfo'] = $pageInfo; if (is_array($pageInfo) && $backendUser->isInWebMount($pageInfo['pid'], $this->perms_clause)) {
Updated by Gerrit Code Review about 3 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/70864
Updated by Gerrit Code Review about 3 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/70864
Updated by Gerrit Code Review about 3 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/70864
Updated by Daniel Siepmann about 3 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 82555e4f274a81c4f4d0fd2fbf2f7d839454f5bf.
Actions