diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-03 00:24:19 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-03 00:24:19 +0000 |
commit | aae945c369ac9c98ab3c2c4036ff1a3453a37467 (patch) | |
tree | 0a4455a561c55ddadf8b9bc17dd13416a1434747 /modules/system | |
parent | 4bd256a20fb949cd0d802d2c5ccee9374e2c87a8 (diff) | |
download | brdo-aae945c369ac9c98ab3c2c4036ff1a3453a37467.tar.gz brdo-aae945c369ac9c98ab3c2c4036ff1a3453a37467.tar.bz2 |
#70995: Prevent cron re-runs
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.install | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 4a6f988ae..758b4a17d 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3337,6 +3337,11 @@ function system_update_1013() { return $ret; } +function system_update_1014() { + variable_del('cron_busy'); + return array(); +} + /** * @} End of "defgroup updates-4.7-to-x.x" * The next series of updates should start at 2000. |