From db6973ba792b383144950f09cc48847eec7b01cc Mon Sep 17 00:00:00 2001
From: Tymoteusz Motylewski <t.motylewski@gmail.com>
Date: Thu, 5 Feb 2015 21:02:56 +0100
Subject: [PATCH] [BUGFIX] Make indexed search extbase plugin work after class
 alias change

Indexed search extbase experimental plugin (pi2) requires class alias
to work. This patch moves it back from compatibility6 extension
to indexed_search.

Resolves: #64886
Releases: master
Change-Id: I36d288d80453a0772181358222608e1df83f9cf6
Reviewed-on: http://review.typo3.org/36681
Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch>
Tested-by: Christian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: Nicole Cordes <typo3@cordes.co>
Tested-by: Nicole Cordes <typo3@cordes.co>
---
 typo3/sysext/compatibility6/Migrations/Code/ClassAliasMap.php | 1 -
 typo3/sysext/indexed_search/Migrations/Code/ClassAliasMap.php | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/typo3/sysext/compatibility6/Migrations/Code/ClassAliasMap.php b/typo3/sysext/compatibility6/Migrations/Code/ClassAliasMap.php
index 6ebcc8906f4a..d98c66cf3dac 100644
--- a/typo3/sysext/compatibility6/Migrations/Code/ClassAliasMap.php
+++ b/typo3/sysext/compatibility6/Migrations/Code/ClassAliasMap.php
@@ -1028,7 +1028,6 @@ return array(
 	'tx_impexp' => \TYPO3\CMS\Impexp\ImportExport::class,
 	'tx_impexp_localPageTree' => \TYPO3\CMS\Impexp\LocalPageTree::class,
 	'tx_impexp_task' => \TYPO3\CMS\Impexp\Task\ImportExportTask::class,
-	'Tx_IndexedSearch_Controller_SearchController' => \TYPO3\CMS\IndexedSearch\Controller\SearchController::class,
 	'Tx_IndexedSearch_Domain_Repository_IndexSearchRepository' => \TYPO3\CMS\IndexedSearch\Domain\Repository\IndexSearchRepository::class,
 	'tx_indexedsearch_files' => \TYPO3\CMS\IndexedSearch\Hook\CrawlerFilesHook::class,
 	'tx_indexedsearch_crawler' => \TYPO3\CMS\IndexedSearch\Hook\CrawlerHook::class,
diff --git a/typo3/sysext/indexed_search/Migrations/Code/ClassAliasMap.php b/typo3/sysext/indexed_search/Migrations/Code/ClassAliasMap.php
index 61889cdb5449..a5ab75cc05ca 100644
--- a/typo3/sysext/indexed_search/Migrations/Code/ClassAliasMap.php
+++ b/typo3/sysext/indexed_search/Migrations/Code/ClassAliasMap.php
@@ -1,4 +1,5 @@
 <?php
 return array(
 	'tx_indexedsearch' => \TYPO3\CMS\IndexedSearch\Controller\SearchFormController::class,
+	'Tx_IndexedSearch_Controller_SearchController' => \TYPO3\CMS\IndexedSearch\Controller\SearchController::class,
 );
\ No newline at end of file
-- 
GitLab