From 7d675ad0985e215339f65ec27d31b43cfa319b17 Mon Sep 17 00:00:00 2001
From: Nathaniel Catchpole <catch@35733.no-reply.drupal.org>
Date: Tue, 3 Dec 2013 14:16:52 +0000
Subject: [PATCH] Issue #2080685 by BerdArt, chertzog: Remove Unused local
 variable $notification_level from /core/modules/update/update.report.inc.

---
 core/modules/update/update.report.inc | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/core/modules/update/update.report.inc b/core/modules/update/update.report.inc
index 4c5264e0f864..039a506b211c 100644
--- a/core/modules/update/update.report.inc
+++ b/core/modules/update/update.report.inc
@@ -32,8 +32,6 @@ function theme_update_report($variables) {
   $header = array();
   $rows = array();
 
-  $notification_level = \Drupal::config('update.settings')->get('notification.threshold');
-
   // Create an array of status values keyed by module or theme name, since
   // we'll need this while generating the report if we have to cross reference
   // anything (e.g. subthemes which have base themes missing an update).
@@ -201,7 +199,7 @@ function theme_update_report($variables) {
     $row .= "<div class=\"info\">\n";
     if (!empty($project['extra'])) {
       $row .= '<div class="extra">' . "\n";
-      foreach ($project['extra'] as $key => $value) {
+      foreach ($project['extra'] as $value) {
         $row .= '<div class="' . implode(' ', $value['class']) . '">';
         $row .= check_plain($value['label']) . ': ';
         $row .= drupal_placeholder($value['data']);
-- 
GitLab