Fix bug in Plugin Blog - uninstall.php
$jakdb->query('DELETE FROM tagcloud WHERE tag = "' . smartsql($row['tag']) . '"')
$jakdb->query('DELETE FROM ' . DB_PREFIX . 'tagcloud WHERE tag = "' . smartsql($row['tag']) . '"');
and then
$jakdb->query('UPDATE tagcloud SET count = count - 1 WHERE tag = "' . smartsql($row['tag']) . '"');
$jakdb->query('UPDATE ' . DB_PREFIX . 'tagcloud SET count = count - 1 WHERE tag = "' . smartsql($row['tag']) . '"');
thx
The missing table prefix has been added on all plugins otherwise the code is correct.
All is OK, thx
Fixed in the upcoming relase 2.3.
*** Ticket closed ***