From 49e21afcafa7ad52a90e9105729e1330f3ceafbb Mon Sep 17 00:00:00 2001
From: Alex Pott <alex.a.pott@googlemail.com>
Date: Wed, 11 Jan 2017 11:01:47 +0000
Subject: [PATCH] Issue #2842480 by amateescu: system_update_8203() is named
 incorrectly

---
 core/modules/system/system.install | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/core/modules/system/system.install b/core/modules/system/system.install
index 6dc2663d1b41..f1fcfba24870 100644
--- a/core/modules/system/system.install
+++ b/core/modules/system/system.install
@@ -1785,12 +1785,20 @@ function system_update_8202() {
  * @} End of "addtogroup updates-8.2.3".
  */
 
+/**
+ * @addtogroup updates-8.3.0
+ * @{
+ */
+
 /**
  * Add detailed cron logging configuration.
  */
-function system_update_8203() {
-  $config_factory = \Drupal::configFactory();
-  $system_cron_config = $config_factory->getEditable('system.cron')
+function system_update_8300() {
+  \Drupal::configFactory()->getEditable('system.cron')
     ->set('logging', 1)
     ->save(TRUE);
 }
+
+/**
+ * @} End of "addtogroup updates-8.3.0".
+ */
-- 
GitLab