You have to change the query in the plugin to adress this issue.
Old
PHP Code:
$latestblogs = $db->query("
SELECT blogid, title, username, dateline, userid, views
FROM " . TABLE_PREFIX . "blog
ORDER BY dateline DESC
LIMIT 5
");
New
PHP Code:
$latestblogs = $db->query_read("
SELECT blogid, title, username, dateline, userid, views
FROM " . TABLE_PREFIX . "blog WHERE state='visible'
ORDER BY dateline DESC
LIMIT 5
");