From b93d8ed5a8ebc0a2e7dfd3bc01f74855bf2c0173 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20B=C3=BClter?= Date: Tue, 10 Nov 2015 17:55:15 +0100 Subject: [PATCH] [BUGFIX] Fix icon file registration --- composer.json | 2 +- ext_emconf.php | 2 +- ext_tables.php | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 66ba68cf..137ee8a3 100644 --- a/composer.json +++ b/composer.json @@ -8,7 +8,7 @@ "support": { "issues": "https://forge.typo3.org/projects/extension-ke_search/issues" }, - "version": "1.99.4", + "version": "1.99.5", "autoload": { "psr-4": { "teaminmedias-pluswerk\\ke_search\\": "Classes" diff --git a/ext_emconf.php b/ext_emconf.php index 1d682268..7d06d016 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,7 +4,7 @@ 'description' => 'Faceted fulltext search for TYPO3. Fast, flexible and easy to use. Very easy to install. Fast (tested with over 200.000 records) and flexible (you can write your own indexers). Indexes content directly from the databases. Visit kesearch.de for further information and documentation.', 'category' => 'plugin', 'shy' => 0, - 'version' => '1.99.4', + 'version' => '1.99.5', 'dependencies' => '', 'conflicts' => '', 'priority' => '', diff --git a/ext_tables.php b/ext_tables.php index 57d3412e..ddbde9c3 100644 --- a/ext_tables.php +++ b/ext_tables.php @@ -87,7 +87,7 @@ 'disabled' => 'hidden', ), 'dynamicConfigFile' => $extPath . 'tca.php', - 'iconfile' => $extRelPath . 'res/img/table_icons/icon_tx_kesearch_filters.gif', + 'iconfile' => 'EXT:ke_search/res/img/table_icons/icon_tx_kesearch_filters.gif', 'searchFields' => 'title' ), ); @@ -108,7 +108,7 @@ 'disabled' => 'hidden', ), 'dynamicConfigFile' => $extPath . 'tca.php', - 'iconfile' => $extRelPath . 'res/img/table_icons/icon_tx_kesearch_filteroptions.gif', + 'iconfile' => 'EXT:ke_search/res/img/table_icons/icon_tx_kesearch_filteroptions.gif', 'searchFields' => 'title,tag' ), ); @@ -127,7 +127,7 @@ 'fe_group' => 'fe_group', ), 'dynamicConfigFile' => $extPath . 'tca.php', - 'iconfile' => $extRelPath . 'res/img/table_icons/icon_tx_kesearch_index.gif', + 'iconfile' => 'EXT:ke_search/res/img/table_icons/icon_tx_kesearch_index.gif', ), ); @@ -149,7 +149,7 @@ 'disabled' => 'hidden', ), 'dynamicConfigFile' => $extPath . 'tca.php', - 'iconfile' => $extRelPath . 'res/img/table_icons/icon_tx_kesearch_indexerconfig.gif', + 'iconfile' => 'EXT:ke_search/res/img/table_icons/icon_tx_kesearch_indexerconfig.gif', 'searchFields' => 'title' ), );