I'm guessing maybe you're on an older PHP version maybe, and it's not updated for the correct parameters..
Anyway, try replacing:
PHP Code:
$validtitle = trim(strtolower($thread[title])," \t.");
$count = 0;
while ($rthread = $DB_site->fetch_array($rthreads)) {
$validthread = trim(strtolower($rthread[title])," \t.");
With just:
PHP Code:
$validtitle = trim($thread[title]);
$validtitle = strtolower($validtitle);
$count = 0;
while ($rthread = $DB_site->fetch_array($rthreads)) {
$validthread = trim($rthread[title]);
$validthread = strtolower($validthread);