This file delete the poormanscron variables in the variables table.

Comments

psicomante’s picture

StatusFileSize
new330 bytes

Ops, old module name :P
Corrected file.

robloach’s picture

Status: Needs review » Fixed

Good find... Changed it a bit to remove all poormanscron_% variables:

/**
 * Implementation of hook_uninstall().
 */
function poormanscron_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'poormanscron_%'");
  cache_clear_all('variables', 'cache');
}

Drupal 6: http://drupal.org/cvs?commit=100289
Drupal 5: http://drupal.org/cvs?commit=100290

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.