Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
NamelessCoder committed Jan 20, 2025
2 parents 8fac940 + d78e45d commit a08d96d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Classes/Controller/AbstractFluxController.php
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ public function getRecord(): array

[$table, $recordUid] = GeneralUtility::trimExplode(
':',
$tsfe->currentRecord
$tsfe->currentRecord ?: $contentObject->currentRecord
);
$record = $this->recordService->getSingle($table, '*', (integer) $recordUid);
if ($record === null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public function processDatamap_afterDatabaseOperations($command, $table, $id, $f
)
)
);
DoctrineQueryProxy::executeQueryOnQueryBuilder($queryBuilder);
DoctrineQueryProxy::executeStatementOnQueryBuilder($queryBuilder);
}

static::$copiedRecords[$fieldArray['t3_origuid']] = true;
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'priority' => 'top',
'loadOrder' => '',
'module' => '',
'state' => 'stable',
'state' => 'beta',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
Expand Down

0 comments on commit a08d96d

Please sign in to comment.