Skip to content

Commit

Permalink
Merge branch 'release/1.1.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianstein committed Jan 16, 2017
2 parents 6165d90 + b8d41cb commit 95b9d05
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions Classes/Utility/TcaUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ public static function getFullTcaForSelectSideBySide(
'config' => [
'type' => 'select',
'foreign_table' => $table,
'MM' => $mmTable,
'foreign_table_where' => 'AND sys_language_uid in (-1, 0)',
'size' => 5,
'autoSizeMax' => 30,
Expand Down
9 changes: 7 additions & 2 deletions Classes/ViewHelpers/RenderContentElementsViewHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,13 @@ public function injectConfigurationManager(ConfigurationManagerInterface $config

public function findTtContentUidsByMmTable($domainObjectUid, $table)
{
$uidArray = $GLOBALS['TYPO3_DB']->exec_SELECTgetRows('uid_foreign as uid', $table,
'uid_local=' . (int)$domainObjectUid);
$uidArray = $GLOBALS['TYPO3_DB']->exec_SELECTgetRows(
'uid_foreign as uid',
$table,
'uid_local=' . (int)$domainObjectUid,
'',
'sorting, sorting_foreign'
);

return $uidArray;
}
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'uploadfolder' => '0',
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '1.1.5',
'version' => '1.1.6',
'constraints' => array(
'depends' => array(
'typo3' => '6.2.0-7.6.99',
Expand Down

0 comments on commit 95b9d05

Please sign in to comment.