Quote:
Originally Posted by MistViper
I get this error when someone invites another person to join their team. If the person clicks on the link in their inbox this error appears. Any suggestions?
|
This only seems to cause an issue in Lite version, but this should hopefully fix it:
Edit teams.php
Find
PHP Code:
if ($_REQUEST['do'] == 'viewteam')
{
require_once(DIR . '/includes/class_bbcode.php');
if (!$id)
{
$id = $vbulletin->input->clean_gpc('g', 'id', TYPE_UINT);
}
Add below
PHP Code:
if (!$id)
{
$id = $vbulletin->input->clean_gpc('g', 'amp;id', TYPE_UINT);
}