From ef02f36a8a86f69b6c0d0a554ba8d8ecedd96b22 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Sun, 29 Sep 2013 17:03:28 +0200 Subject: [PATCH] Issue #2080561 by mrsinguyen: Remove Unused local variable from /core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php. --- core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php b/core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php index 735cd953c694..7fea145fb7ee 100644 --- a/core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php +++ b/core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php @@ -493,7 +493,7 @@ class DbLogTest extends WebTestBase { // Set the filter to match each of the two filter-type attributes and // confirm the correct number of entries are displayed. - foreach ($types as $key => $type) { + foreach ($types as $type) { $edit = array( 'type[]' => array($type['type']), 'severity[]' => array($type['severity']),