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

Also available in: Atom PDF