Quote:
Originally Posted by buro9
Got it... it's here:
Code:
<script language="javascript">
window.alert("No matches found for:\n\""killing all chickens"\"");
window.close();
</script>
The double quotes aren't escaped in the javascript error message.
|
Simple solution... in findtopic.php at the bottom, find:
Code:
eval('print_output("' . fetch_template('newthread_find') . '");');
Above it add:
Code:
if (empty($threads)) {
$subject = str_replace('"','\"',$subject);
}