
12-15-2009, 04:44 PM
|
 |
|
|
Join Date: Jan 2003
Location: WagnerTech.net
Posts: 266
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by MicroHellas
Yes I seen it. It's a typo on file support.php line 466.
Instead of:
Code:
if($vbulletin->options["microsupport_products"])
{
$products = getProducts($ticket["productid"]);
}
if($vbulletin->options["microsupport_products"])
{
$departments = getDepartments($ticket["departmentid"]);
}
Must be:
Code:
if($vbulletin->options["microsupport_products"])
{
$products = getProducts($ticket["productid"]);
}
if($vbulletin->options["microsupport_departments"])
{
$departments = getDepartments($ticket["departmentid"]);
}
I've wrote again microsupport_products in 2nd condition instead the correct microsupport_departments
Maria
|
Thank You. 
That did the trick. :up:
|