Project

General

Profile

Actions

Bug #99946

closed

Mount Points broken after Update to 11.5.23

Added by Christoph Runkel about 1 year ago. Updated about 1 year ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Frontend
Target version:
Start date:
2023-02-14
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
11
PHP Version:
7.4
Tags:
Complexity:
no-brainer
Is Regression:
No
Sprint Focus:

Description

After update to 11.5.23 i get the following error on some pages with mount points set.

Core: Exception handler (WEB): Uncaught TYPO3 Exception: Argument 1 passed to TYPO3\CMS\Core\Utility\RootlineUtility::sanitizeMountPointParameter() must be of the type string, null given, called in /home/xxxxxxx/typo3_src-11.5.23/typo3/sysext/core/Classes/Utility/RootlineUtility.php on line 136 | TypeError thrown in file /home/xxxxxxxx/typo3_src-11.5.23/typo3/sysext/core/Classes/Utility/RootlineUtility.php in line 427. Requested URL: https://www.xxxxxxxxx/ xxxxx

Problem that NULL is set somewhere else and passed into the function.

public function __construct($uid, $mountPointParameter = '', $context = null)
    {

        $this->mountPointParameter = $this->sanitizeMountPointParameter($mountPointParameter);
        .....
}

False

After this change everything works fine again...

public function __construct($uid, $mountPointParameter = '', $context = null)
    {
        if ($this->mountPointParameter)
        {
        $this->mountPointParameter = $this->sanitizeMountPointParameter($mountPointParameter);
        }

Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #99731: PHP Warning: Undefined array key 1 in in /typo3_src-11.5.22/web/typo3/sysext/core/Classes/Utility/RootlineUtility.php line 431Closed2023-01-27

Actions
Actions #1

Updated by Georg Ringer about 1 year ago

  • Description updated (diff)
  • Is Regression set to Yes
Actions #2

Updated by Georg Ringer about 1 year ago

  • Description updated (diff)
Actions #3

Updated by Georg Ringer about 1 year ago

  • Is Regression changed from Yes to No

thanks for creating the issue. can you please add some more stacktrace to find the occurence? I haven't found any problematic usage in the core during a quick review but to either fix the issue or add a proper report to the problematic extension some more info is needed.

if you are hesitating because of sensitive information, forward it to me in private via mail/slack

Actions #4

Updated by Georg Ringer about 1 year ago

  • Status changed from New to Needs Feedback
Actions #5

Updated by Christoph Runkel about 1 year ago

Stack trace was sent ...

Actions #6

Updated by Georg Ringer about 1 year ago

  • Related to Bug #99731: PHP Warning: Undefined array key 1 in in /typo3_src-11.5.22/web/typo3/sysext/core/Classes/Utility/RootlineUtility.php line 431 added
Actions #7

Updated by Gerrit Code Review about 1 year ago

  • Status changed from Needs Feedback 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/+/77860

Actions #8

Updated by Gerrit Code Review about 1 year 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/+/77860

Actions #9

Updated by Gerrit Code Review about 1 year 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/+/77860

Actions #10

Updated by Gerrit Code Review about 1 year ago

Patch set 4 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/+/77860

Actions #11

Updated by Gerrit Code Review about 1 year 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/+/77864

Actions #12

Updated by Gerrit Code Review about 1 year ago

Patch set 5 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/+/77860

Actions #13

Updated by Gerrit Code Review about 1 year 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/+/77864

Actions #14

Updated by Georg Ringer about 1 year ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #15

Updated by Benni Mack about 1 year ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF