Skip to content

Commit

Permalink
[BUGFIX] Fix icon file registration
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Bülter committed Nov 10, 2015
1 parent a1fae91 commit b93d8ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' => '',
Expand Down
8 changes: 4 additions & 4 deletions ext_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'
),
);
Expand All @@ -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'
),
);
Expand All @@ -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',
),
);

Expand All @@ -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'
),
);
Expand Down

0 comments on commit b93d8ed

Please sign in to comment.