diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-10-03 22:44:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-10-03 22:44:48 +0000 |
commit | f1a6b0e926b2eec90929496fd0380025cc558bcb (patch) | |
tree | ccfe7871fdd18d275fd3d5e818ca3eb85e9ac731 /modules/update | |
parent | 762f5b05271311c46f180a6d14979c55d223160c (diff) | |
download | brdo-f1a6b0e926b2eec90929496fd0380025cc558bcb.tar.gz brdo-f1a6b0e926b2eec90929496fd0380025cc558bcb.tar.bz2 |
- Patch #827150 by dww: use a reliable queue.
Diffstat (limited to 'modules/update')
-rw-r--r-- | modules/update/update.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/update/update.install b/modules/update/update.install index 417f8eeca..b9005a24f 100644 --- a/modules/update/update.install +++ b/modules/update/update.install @@ -71,7 +71,7 @@ function update_schema() { * Implements hook_install(). */ function update_install() { - $queue = DrupalQueue::get('update_fetch_tasks'); + $queue = DrupalQueue::get('update_fetch_tasks', TRUE); $queue->createQueue(); } |