summaryrefslogtreecommitdiff
path: root/includes/lock.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-02-17 22:44:52 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-02-17 22:44:52 +0000
commit8d01aeb4287be61195a43305e34f379086914f5d (patch)
tree88ef91e8532ed82085dfa5ce8a854116f891173b /includes/lock.inc
parent8847f4c9a2edcd2f555d6a47b5037c88c671cc3c (diff)
downloadbrdo-8d01aeb4287be61195a43305e34f379086914f5d.tar.gz
brdo-8d01aeb4287be61195a43305e34f379086914f5d.tar.bz2
#710142 by Berdir, moshe weitzman, chx: Handle exceptions in shutdown functions (with tests). Hopefully the last of these weird 'Stack frame in Unknown line 0' errors.
Diffstat (limited to 'includes/lock.inc')
-rw-r--r--includes/lock.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/lock.inc b/includes/lock.inc
index 5d03cdd99..3b649a050 100644
--- a/includes/lock.inc
+++ b/includes/lock.inc
@@ -84,7 +84,7 @@ function _lock_id() {
// Assign a unique id.
$lock_id = uniqid(mt_rand(), TRUE);
// We only register a shutdown function if a lock is used.
- register_shutdown_function('lock_release_all', $lock_id);
+ drupal_register_shutdown_function('lock_release_all', $lock_id);
}
return $lock_id;
}