Bug #60702
closedClicking on pencil results in "Sorry, you didn't have proper permissions to perform this change."
0%
Description
When I'm using the Page module and I click on the pencil of the third (or higher) content item, i get this message: "Sorry, you didn't have proper permissions to perform this change."
Note: no problems in the context menu->edit or List module.
The error is caused by typo3/sysext/backend/Classes/View/PageLayoutView.php line 1313:
$params = '&edit[tt_content][' . $this->tt_contentData['nextThree'][$row['uid']] . ']=edit';
It appears that $this->tt_contentData['nextThree'] is empty at the third content item. An easy fix would be to replace $this->tt_contentData['nextThree'][$row['uid']] with $row['uid']
Out of curiosity, what is the function of this 'nextThree'?
Updated by Jigal van Hemert over 10 years ago
- Status changed from New to Closed
Closed as duplicate of #60199 .
And regarding your question: the nextThree data contains information about the content elements around a content element; these are specifically made for the icons for moving, editing, and so on. The name is a relic from the past :-)
If you have extra information, please add it to #60199 . This way we can keep the number of duplicate issues down to a minimum.