Project

General

Profile

Actions

Bug #82535

closed

Non published Translation in Workspace causes Exception in Live Workspace

Added by Frederik Holz over 6 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Workspaces
Target version:
-
Start date:
2017-09-21
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
8
PHP Version:
7.1
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

Scenario:
Workspace Live
Workspace Staging

User translates a Page in the Staging Workspace from the default langauge to another one.
Accessing the Page with another User in the Live-Workspace causes an Exception:

Argument 2 passed to TYPO3\CMS\Core\Imaging\IconFactory::getIconForRecord() must be of the type array, boolean given, called in /var/www/cores/typo3_src-8.7.7/typo3/sysext/backend/Classes/View/PageLayoutView.php on line 879

Debugged a little and the problems seems to be that he tries to fetch the WorkspaceStaging Record within this query:

$lpRecord = $queryBuilder->select('*')
                        ->from('pages_language_overlay')
                        ->where(
                            $queryBuilder->expr()->eq(
                                'pid',
                                $queryBuilder->createNamedParameter($id, \PDO::PARAM_INT)
                            ),
                            $queryBuilder->expr()->eq(
                                'sys_language_uid',
                                $queryBuilder->createNamedParameter($lP, \PDO::PARAM_INT)
                            )
                        )
                        ->setMaxResults(1)
                        ->execute()
                        ->fetch();

pid is set to the ID of the originial Page but he tries to fetch the page_language_overlay record from the workspace with the pid -1. So $lpRecord is not a $row but a boolea with the value "false" causing the error.

This error only occurs if I select the language View in the Page Module for this specific page.


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #82953: Page Module throws errors after creating translation in a stage workspaceClosed2017-11-08

Actions
Actions #1

Updated by Walter Kruml over 6 years ago

I have exactly the same issue!

Actions #2

Updated by Riccardo De Contardi over 6 years ago

  • Related to Bug #82953: Page Module throws errors after creating translation in a stage workspace added
Actions #3

Updated by Riccardo De Contardi over 6 years ago

  • Status changed from New to Closed

I close this issue in favor of #82953; please continue the discussion there. I've added a reference to this issue to keep track of it.

Thank you

Actions

Also available in: Atom PDF