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
Comment #1
yelvington commentedFixed, thanks. D5 and D6 have different order of args to the cache_set function.
Comment #2
yelvington commentedClosing.