Hi,

After installing fbstatus and it's block I got MySql errors about an "incorrect table name".

I found the culprit line 109 of fbstatus.module

cache_set('fbstatus', $status, 'cache', time() + $interval * 60);

Simply changing it to :

cache_set('fbstatus', 'cache', $status, time() + $interval * 60);

solved my problem!

Hope this helps,

Jun.

Comments

yelvington’s picture

Status: Needs review » Fixed

Fixed, thanks. D5 and D6 have different order of args to the cache_set function.

yelvington’s picture

Status: Fixed » Closed (fixed)

Closing.