A TYPO3 extension that integrates the Apache Solr search server with TYPO3 CMS. dkd Internet Service GmbH is developing the extension. Community contributions are welcome. See CONTRIBUTING.md for details.
GNU General Public License v3.0
137
stars
253
forks
source link
[BUG:T13] Hide translation not correctly processed #4103
Integration-test GarbageCollectorTest::queueItemStaysWhenOverlayIsSetToHidden does not test that really
Even if test is successful, in BE the index queue item was removed
The process is currently wrong on changing translated page to "hide":
removes the Translation from Index (OK)
does not remove the index queue item for original page (OK)
does not queue the index queue item for indexing (BUG)
This leads to missing index for translation if "fallback"-mode is active(until the origianal page is changed or Re-Index is triggered)
Each action MUST queue the "index queue item" (set tx_solr_indexqueue_item.indexed = 0), to go through whole EXT:solr processing.
Issues in this process:
Each action MUST queue the "index queue item" (set
tx_solr_indexqueue_item
.indexed
= 0), to go through whole EXT:solr processing.