From 70a86d7b99d68463d62a2341db9f5e9d6af3b327 Mon Sep 17 00:00:00 2001 From: catch Date: Mon, 27 Jan 2020 10:53:47 +0000 Subject: [PATCH] Issue #3098521 by Gnanagowthaman sankar, mandclu, penyaskito: drupal_installation_attempted() deprecation referencing wrong change record --- core/lib/Drupal/Core/Config/ConfigInstaller.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/Drupal/Core/Config/ConfigInstaller.php b/core/lib/Drupal/Core/Config/ConfigInstaller.php index da188315ebaa..da7aa9724e13 100644 --- a/core/lib/Drupal/Core/Config/ConfigInstaller.php +++ b/core/lib/Drupal/Core/Config/ConfigInstaller.php @@ -734,11 +734,11 @@ class ConfigInstaller implements ConfigInstallerInterface { * Use \Drupal\Core\Installer\InstallerKernel::installationAttempted() * instead. * - * @see https://www.drupal.org/node/3035275 + * @see https://www.drupal.org/node/3052704 * @see \Drupal\Core\Installer\InstallerKernel::installationAttempted() */ protected function drupalInstallationAttempted() { - @trigger_error(__METHOD__ . '() is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Installer\InstallerKernel::installationAttempted() instead. See https://www.drupal.org/node/3035275', E_USER_DEPRECATED); + @trigger_error(__METHOD__ . '() is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Installer\InstallerKernel::installationAttempted() instead. See https://www.drupal.org/node/3052704', E_USER_DEPRECATED); return InstallerKernel::installationAttempted(); }