We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c9353 commit 8276145Copy full SHA for 8276145
app/code/Magento/Developer/Model/Config/Backend/AllowedIps.php
@@ -58,7 +58,7 @@ public function beforeSave()
58
59
$dataArray = explode(',', $allowedIpsRaw);
60
foreach ($dataArray as $data) {
61
- if ( filter_var(trim($data), FILTER_VALIDATE_IP) ) {
+ if (filter_var(trim($data), FILTER_VALIDATE_IP)) {
62
$allowedIpsArray[] = $data;
63
} else {
64
$noticeMsgArray[] = $data;
0 commit comments