Quote:
Originally posted by Velocd
hmm, that is an odd error.
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:
PHP Code:
$validtitle = trim($thread[title]," \t.");
$validtitle = strtolower($validtitle);
$count = 0;
while ($rthread = $DB_site->fetch_array($rthreads)) {
$validthread = trim($rthread[title]," \t.");
$validthread = strtolower($validthread);
My guess is you are using possibly an older version of PHP maybe, and it's not functional with more than one parameter..(something like that)..:P
|
I had the same problem on my board:
Warning: Wrong parameter count for trim() in showthread.php on line ???
I tried replacing this, but it still doesn't work.
Any ideas? I have the store hack added too.
Thanks
Craig