From b8b0c4f668d55c236c9dbb89c853976f52de24ad Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Mon, 15 Feb 2021 16:04:21 +0100 Subject: [PATCH] Sort log entries by existing column Sorting by none existing column might result in exceptions. --- Configuration/TCA/tx_thuecat_import_log_entry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configuration/TCA/tx_thuecat_import_log_entry.php b/Configuration/TCA/tx_thuecat_import_log_entry.php index 533dd63..155716b 100644 --- a/Configuration/TCA/tx_thuecat_import_log_entry.php +++ b/Configuration/TCA/tx_thuecat_import_log_entry.php @@ -11,7 +11,7 @@ return (static function (string $extensionKey, string $tableName) { 'label' => 'table_name', 'label_alt' => 'record_uid', 'label_alt_force' => true, - 'default_sortby' => 'title', + 'default_sortby' => 'crdate', 'tstamp' => 'tstamp', 'crdate' => 'crdate', 'cruser_id' => 'cruser_id',