Closed (fixed)
Project:
Quotes
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
3 Apr 2008 at 15:48 UTC
Updated:
8 Apr 2008 at 03:50 UTC
The uninstall code delete the content type, but not the content. Add this at the beginning of the function:
function quotes_uninstall() {
variable_del('quotes_leader');
// Remove all Quotes nodes.
$result = db_query('SELECT nid FROM {node} WHERE type = "quotes"');
while ($obj = db_fetch_object($result)) {
node_delete($obj->nid);
}
Comments
Comment #1
nancydruFix committed.
Comment #2
nancydru