Database errors using the 2.0 version if you have a table prefix.
The cause is a space between the table prefix and the table name in the db query-
find
Code:
FROM " . TABLE_PREFIX . " userlist as ulist
LEFT JOIN " . TABLE_PREFIX . " user as u ON(u.userid = ulist.relationid)
change to
Code:
FROM " . TABLE_PREFIX . "userlist as ulist
LEFT JOIN " . TABLE_PREFIX . "user as u ON(u.userid = ulist.relationid)
Also... the <center> tag isn't closed on the "Plugin by Exel... " link.