Bug #99838
closed_SHORTCUT_ORIGINAL_PAGE_UID set to wrong value
100%
Description
The _SHORTCUT_ORIGINAL_PAGE_UID property set in PageRepository->resolveShortcutPage has the value of the resolved page uid, shouldn't this be the uid of the shortcut original page instead?
Original code:
$page = $shortcut;
$page['_SHORTCUT_ORIGINAL_PAGE_UID'] = $page['uid'];
Fixed code:
$shortcutOriginalPageUid= $page['uid'];
$page = $shortcut;
$page['_SHORTCUT_ORIGINAL_PAGE_UID'] = $shortcutOriginalPageUid;
Updated by Gerrit Code Review almost 2 years ago
- Status changed from New to Under Review
Patch set 1 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/+/79707
Updated by Gerrit Code Review almost 2 years ago
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/+/79707
Updated by Gerrit Code Review almost 2 years 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/+/79707
Updated by Gerrit Code Review almost 2 years 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/+/79749
Updated by Benni Mack almost 2 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset df52f29f2ab7556e1f79fd171316d41320013bc2.
Updated by Benni Mack 2 months ago
- Related to Bug #106210: Shortcuts in menus are not ACT anymore added
Updated by Benni Mack 2 months ago
- Related to Bug #97186: Menuprocessor shortcut active subpage wrong link state added
Updated by Benni Mack 2 months ago
- Related to Bug #97037: Shortcut in menu to root page is always active added
Updated by Benni Mack 2 months ago
- Related to Bug #102344: Shortcuts in menu are not active / current anymore in TYPO3 12 added