Closed (fixed)
Project:
Job Scheduler
Version:
7.x-2.0-alpha2
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
22 Sep 2014 at 10:47 UTC
Updated:
4 Feb 2015 at 14:04 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
RavindraSingh commentedComment #2
RavindraSingh commentedComment #3
RavindraSingh commentedImplemented patch for the issue
/*
* Implementation hook_uninstall().
*/
function job_scheduler_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'job_scheduler%'");
}
Comment #4
vivekguptakota commentedYou can also add following code in .install file
/*
* Implements hook_uninstall().
*/
function job_scheduler_uninstall() {
variable_del('job_scheduler_rebuild_all');
}
Comment #5
RavindraSingh commentedjob scheduler generates variables dynamically. if you might have observed it with feeds module to adding importer id so variable_del('job_scheduler_rebuild_all'); is not sufficient.
Comment #6
RavindraSingh commentedComment #8
webflo commentedThanks! Merged both patches on commit.