Issue #2080013 by mrsinguyen: Remove Unused local variable from /core/modules/system/lib/Drupal/system/Form/ImageToolkitForm.php.

8.0.x
webchick 2013-12-04 00:46:45 -08:00
parent 29e3ae0cc4
commit 3eb67ce825
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class ImageToolkitForm extends ConfigFormBase {
// Call the form submit handler for each of the toolkits.
// Get the toolkit settings forms.
foreach ($this->availableToolkits as $id => $toolkit) {
foreach ($this->availableToolkits as $toolkit) {
$toolkit->settingsFormSubmit($form, $form_state);
}