Project

General

Profile

Actions

Bug #82391

closed

Inline records in TYPO3 v. 7.6.22 crash when NOT having sys_language_uid on children

Added by Claus Harup over 6 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Start date:
2017-09-08
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
easy
Is Regression:
Sprint Focus:

Description

I have a few plugins containing records without DB field sys_language_uid...... - after upgrading to 7.6.22 I get an error 500 when trying to add the record as inline to.... let's say pages.

Sure I can add the language configuration fields, but maybe the core should check for the existence of the field before trying to set the field?!

sysext/backend/Classes/Controller/FormInlineAjaxController.php

if ($parent['localizationMode'] === 'select' && MathUtility::canBeInterpretedAsInteger($parent['uid'])) {
  $parentRecord = $inlineRelatedRecordResolver->getRecord($parent['table'], $parent['uid']);
  $parentLanguageField = $GLOBALS['TCA'][$parent['table']]['ctrl']['languageField'];
  $childLanguageField = $GLOBALS['TCA'][$child['table']]['ctrl']['languageField'];
  if ($parentRecord[$parentLanguageField] > 0) {
    $record[$childLanguageField] = $parentRecord[$parentLanguageField]; <---------!!!!!!!!
  }
}

Greatings, Claus

TYPO3 rocks!!!!


Related issues 1 (0 open1 closed)

Is duplicate of TYPO3 Core - Bug #82330: cant create inline records if ctrl > enablecolumns > endtime is not specified in childrens TCA Closed2017-09-07

Actions
Actions #1

Updated by Malte Muth over 6 years ago

The snippet posted seems to be from version 7.6.21; commit ID 9d3aa8618b changed this to

if ($parent['localizationMode'] !== 'keep' && MathUtility::canBeInterpretedAsInteger($parent['uid'])) {
    $parentRecord = BackendUtility::getRecord($parent['table'], $parent['uid']);
    $parentLanguageField = $GLOBALS['TCA'][$parent['table']]['ctrl']['languageField'];
    $childLanguageField = $GLOBALS['TCA'][$child['table']]['ctrl']['languageField'];
    $childData['databaseRow'][$childLanguageField][0] = $parentRecord[$parentLanguageField];
}

Either way, the behaviour is still "500" when trying to add childs to records that have

localizationMode === false

I think this is a regression, since 7.6.21 worked, as the check

if ($parentRecord[$parentLanguageField] > 0) {

caught this. I propose to add

$parent['localizationMode']

to the conditions - can anybody with some knowledge chime in?

Actions #2

Updated by Mathias Brodala over 6 years ago

  • Is duplicate of Bug #82330: cant create inline records if ctrl > enablecolumns > endtime is not specified in childrens TCA added
Actions #3

Updated by Mathias Brodala over 6 years ago

  • Status changed from New to Closed

Please see #82330

Actions

Also available in: Atom PDF