Problemas con el link a los perfiles

H

Hades222

E instalado un hack para que en el perfil del usuario aparezca una lista con los temas creados por el.Funciona bien pero tiene un pequeño problema, los link al perfil dejaron de funcionar, menos los link: /member.php?find=lastposter&f=2.

Creo que el problema aparece al introducir este codigo en el archivo member:

PHP:
// THREADS
// By assassingod
// Dont forget to change the variables on line 394

$limit = '5';	// Enter the number of maximum threads you want to be displayed
$forumids = implode ("', '", get_noaccess_forumids()) ;

$getthreads = $DB_site->query("
	SELECT threadid,title,dateline
	FROM " . TABLE_PREFIX ."thread
	WHERE postuserid = '$userinfo[userid]' AND forumid NOT IN ('$forumids')
	ORDER BY dateline DESC
	LIMIT $limit
");

	while($threads = $DB_site->fetch_array($getthreads))
	{
		exec_switch_bg();
		$threads['date'] = vbdate($vboptions['dateformat'],$threads['dateline']);
		$threads['time'] = vbdate($vboptions['timeformat'],$threads['dateline']);

		eval('$usersthreads .= "' . fetch_template('memberinfo_usersthreads') . '";');
	}


Alguna solucion por ahora? :)
 
Arriba