Quote:
Originally Posted by john7911
Ok I insttaled it :-)
But when I clic on the thumb I have these code bellow:
[] operator not supported for strings on line 182 in /home/faouwebn/public_html/faouweb/forum/includes/functions_post_thanks.php
#0 /home/faouwebn/public_html/faouweb/forum/includes/functions_post_thanks.php(137): fetch_thanks('458', '', false)
#1 /home/faouwebn/public_html/faouweb/forum/post_thanks.php(64): thanked_already(Array)
#2 {main}
|
In includes/functions_post_thanks.php
look for this line:
Quote:
if (empty($postids))
{
$postids[] = $postid;
}
|
replace with this:
Quote:
if (empty($postids))
{
$postids = array(); $postids[] = $postid;
}
|
thanks to dave for the fix.