functions_post_thanks.php
search:
Code:
if (empty($postids))
{
$postids[] = $postid;
}
replace with:
Code:
if (empty($postids))
{
$postids = array();
$postids[] = $postid;
}
product-post_thanks-7.88.xml
Code:
<dependency dependencytype="vbulletin" minversion="4.2.0" maxversion="4.2.4" />
replace with:
Code:
<dependency dependencytype="vbulletin" minversion="4.2.0" maxversion="4.2.8" />