Skip to content

Commit 6b76655

Browse files
authored
Update Field.php, use single quote.
1 parent a5ce782 commit 6b76655

File tree

1 file changed

+1
-1
lines changed
  • app/code/core/Mage/Adminhtml/Block/System/Config/Form

1 file changed

+1
-1
lines changed

app/code/core/Mage/Adminhtml/Block/System/Config/Form/Field.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public function render(Varien_Data_Form_Element_Abstract $element)
8383
$defTextArr = [];
8484
foreach ($options as $k => $v) {
8585
if ($isMultiple) {
86-
if (array_key_exists("value", $v) && is_array($v['value']) && in_array($k, $v['value'])) {
86+
if (array_key_exists('value', $v) && is_array($v['value']) && in_array($k, $v['value'])) {
8787
$defTextArr[] = $v['label'];
8888
}
8989
} elseif (is_array($v) && array_key_exists('value', $v)) {

0 commit comments

Comments
 (0)