If I click to "Chat Messages" Navigation link, then I get error mesage:
PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'szcom.drupalchat_msg' doesn't exist: SELECT u.name as name, g.uid as uid, g.message as message, g.TIMESTAMP as timestamp...
Because I use "dr_" prefix for all drupal tables, then my table is "dr_drupalchat_msg". Please change the code to use prefix also in this function.
Comments
Comment #1
Szaki commentedIn drupalchat.module row 1061 please change:
FROM drupalchat_msg t1
to
FROM {drupalchat_msg} t1
Than this will work fine!
Comment #2
darklrd commentedFixed in latest release.