Quote:
Originally Posted by BasilFawlty
Thank you! I added that just before the "if statement" on line 180 and that solved the problem! Thanks you thank you thank you!
|
Before if statement on line 180 is wrong position. Dave wrote "before line 182".
So correct is
PHP Code:
180 if (empty($postids))
181 {
181a $postids = array();
182 $postids[] = $postid;
183 }
Alternative for line new + 182 is
182 $postids = array($postid);
But what is your used mod version? On top in version 7.88 this backward incompatibility was removed (running here with vB4.2.5 and php7.1.32)