Okay, solved by myself. Anyone who’s interested… add these lines to your searchform (inside the <form – Tag) :
<input type=”hidden” value=”<?php if ($language == ‘en’)
echo “en”;
else
echo “de”; ?>” name=”language”/>
If you have more than 2 languages you can alter it with elseif
Cheers, Candy