Ok, hab' die Lösung nun selbst gefunden, war doch nicht sooo schwer.
Einfach i.d. class.tx_indexedsearch.php
ff. Passage so ändern:
PHP-Code:
// Add previous search words to current
//Add more searchoptions to the searchstring
if ($this->piVars['sword_prev_include'] && $this->piVars['sword_prev']) {
$ii=count($this->piVars['sword_prev']);
for($i=0; $i<$ii; $i++) {
$this->piVars['sword'] = trim($this->piVars['sword']).' '.$this->piVars['sword_prev'][$i];
}
}
Jetzt kann man an sein eigenes Suchformular beliebige Felder mit dem Namen tx_indexedsearch[sword_prev][] anhängen.
Diese werden dann dem Suchstring hinzugefügt. Ist zwar nicht so sauber, aber wer will kann ja optimieren.
Roman Engelbarts