Project

General

Profile

Actions

Bug #75647

closed

Story #69617: FormEngine bugs

hardcoded "hidden" col in backend/form creates wrong SQL

Added by Stefan Froemken about 8 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
FormEngine aka TCEforms
Target version:
Start date:
2016-04-15
Due date:
% Done:

100%

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

Description

Hello Core-Team,

if you have a record with an inline-relation to be_users and that inline record is collapsed (<---notloaded--> in HTML-comment) and you save that record, then a SQL-Error appears: col "hidden" not found in be_users.

In InlineRecordContainer.php you're working with hardcoded "hidden" cols:

PS: If you save the record with expanded inline-records it works like expected.

if (!$data['isInlineChildExpanded']
  && !empty($GLOBALS['TCA'][$foreignTable]['ctrl']['enablecolumns']['disabled'])
) {
$checked = !empty($record['hidden']) ? ' checked="checked"' : '';
$html .= '<input type="checkbox" data-formengine-input-name="data'
  . htmlspecialchars($appendFormFieldNames)
  . '[hidden]" value="1"' . $checked . ' />';
  $html .= '<input type="input" name="data' . htmlspecialchars($appendFormFieldNames)
  . '[hidden]" value="' . htmlspecialchars($record['hidden']) . '" />';
}

Stefan

Actions

Also available in: Atom PDF