Hello, there seems to be a small bug: Ich i klick thanks an reload the Page, the Thanks Button is shown up.
I fixed it:
In the plugin postbit_display_start, find:
PHP Code:
else if (can_thank_this_post($this->post, $this->thread['isdeleted']))
{
$display_image = '';
}
and replace with:
PHP Code:
else if (can_thank_this_post($this->post, $this->thread['isdeleted']) AND !thanked_already($this->post, $thanks))
{
$display_image = '';
}
Greetings Surviver