From 2240942511eabc344fca28eaa9caec6da3d2c701 Mon Sep 17 00:00:00 2001 From: webchick <webchick@24967.no-reply.drupal.org> Date: Fri, 17 Jan 2014 14:05:58 -0800 Subject: [PATCH] Issue #2175769 by alexpott: Fix incorrect variable_del() in update_uninstall(). --- core/modules/update/update.install | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/modules/update/update.install b/core/modules/update/update.install index 505b1ca4efa5..99ca307bce7a 100644 --- a/core/modules/update/update.install +++ b/core/modules/update/update.install @@ -68,9 +68,8 @@ function update_install() { * Implements hook_uninstall(). */ function update_uninstall() { - // @todo D8: Convert to new state storage. - variable_del('update_last_check'); - variable_del('update_last_email_notification'); + \Drupal::state()->delete('update.last_check'); + \Drupal::state()->delete('update.last_email_notification'); $queue = \Drupal::queue('update_fetch_tasks'); $queue->deleteQueue(); -- GitLab