Skip to content

Commit

Permalink
[BUGFIX] Declare makeSystemCategoryTags in tx_kesearch_helper as stat…
Browse files Browse the repository at this point in the history
…ic. Thanks to Johannes Steu. [BUGFIX] Add classmap to composer.json in order to fix autoloading in composer mode. Thanks to Johannes Steu.
  • Loading branch information
Christian Bülter committed Nov 10, 2015
1 parent c06d5c6 commit a1fae91
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
ChangeLog

Version 2.0.0
*IMPORTANT* This version has breaking changes: Marker based templating has been deprecated and will be dropped completely, support for TYPO 4.5 has been dropped, parameters of hook calls have changed!

Version 1.99.4
[BUGFIX] Declare makeSystemCategoryTags in tx_kesearch_helper as static. Thanks to Johannes Steu.
[BUGFIX] Add classmap to composer.json in order to fix autoloading in composer mode. Thanks to Johannes Steu.

Version 1.99.3
[FEATURE] index content elements attached to news (ext:news). Thanks to TRITUM GmbH for sponsoring.

Version 1.99.2
[TASK] move code hosting to github.com
[FEATURE] add fluid based templating.
[TASK] raise minimum requirement to TYPO3 version 6.2
Expand All @@ -21,7 +29,6 @@ Version 2.0.0
[TASK] add composer.json
[TASK] remove indexer for DAM since that extension is not available for 6.2 and above.
[TASK] change TCA for indexer configuration so that dependencies to tt_news and news are only set when these extensions are installed.
[FEATURE] index content elements attached to news (ext:news). Thanks to TRITUM GmbH for sponsoring.

Version 1.10.2
* bugfix: add langDisable in flexform, https://forge.typo3.org/issues/64579
Expand Down
2 changes: 1 addition & 1 deletion Classes/lib/class.tx_kesearch_lib_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public static function makeTags(&$tags, $categoryArray) {
* @author Christian Bülter <christian.buelter@inmedias.de>
* @since 24.09.15
*/
public function makeSystemCategoryTags(&$tags, $uid, $tablename) {
public static function makeSystemCategoryTags(&$tags, $uid, $tablename) {
$categories = tx_kesearch_helper::getCategories($uid, $tablename);
if (count($categories['uid_list'])) {
foreach ($categories['uid_list'] as $category_uid) {
Expand Down
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.3",
"version": "1.99.4",
"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.3',
'version' => '1.99.4',
'dependencies' => '',
'conflicts' => '',
'priority' => '',
Expand Down

0 comments on commit a1fae91

Please sign in to comment.