For those who may try to use this on PHP 5.6.0 (or higher) and VB 3.8.11, you need to make some manual file edits to the
/includes/functions_post_groan.php
Thanks to
vbem2 who figured out the file edits for the Post Thank You mod here:
https://vborg.vbsupport.ru/showthrea...95#post2586995
But basically you open the file in a code editor.
FIrst look for:
Code:
if ($postids)
{
$post_ids = "0$postids";
}
else
{
$post_ids = $postid;
}
and replace it with
Code:
if (empty($postids))
{
$postids[] = $postid;
}
Next search for:
Code:
(" . $post_ids . ")
And replace it with
Code:
(" . implode(',', $postids) . ")
There should be 2 instances of the above.
That seems to do it for me.