Bug #103461
closedCan't switch off Admin Edit Lock of pages in Access Module of v11
100%
Description
In TYPO3 v11 it is not possible to switch off the "Admin-only" edit lock (DB field page.editlock) in the Access Module.
Doctrine throws an error:
Incorrect integer value: '' for column 'editlock' at row 1
Please change line 201 in sysext/beuser/Classes/Controller/PermissionController.php from
case 'toggle_edit_lock':
// Initialize requested lock state
$editLockState = !$conf['editLockState'];
to
case 'toggle_edit_lock':
// Initialize requested lock state
$editLockState = $conf['editLockState'] ? 0 : 1;
In TYPO3 v12 I can't reproduce this behaviour.
Updated by Christian Ludwig 8 months ago ยท Edited
Updated by Christian Ludwig 8 months ago
- Subject changed from Can't switch of Admin Edit Lock of pages in Access Module of v11 to Can't switch off Admin Edit Lock of pages in Access Module of v11
Updated by Christian Ludwig 8 months ago
- Related to Task #103462: Admin-only edit lock can be disabled again in v11.5 added
Updated by Gerrit Code Review 8 months ago
- Status changed from New to Under Review
Patch set 2 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/83564
Updated by Gerrit Code Review 8 months ago
Patch set 3 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/83564
Updated by Gerrit Code Review 8 months ago
Patch set 1 for branch 12.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/83541
Updated by Gerrit Code Review 8 months ago
Patch set 1 for branch 11.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/83542
Updated by Gerrit Code Review 8 months ago
Patch set 2 for branch 11.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/83542
Updated by Anonymous 8 months ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 74a7d937c93702a3c26dfc01144907aaaecaa3e7.