Skip to content

Commit eba21cf

Browse files
authored
Update ResetMethod.php
1 parent 836a325 commit eba21cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Security/Model/Config/Source/ResetMethod.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ResetMethod implements \Magento\Framework\Option\ArrayInterface
2525
public function toOptionArray()
2626
{
2727
return [
28-
['value' => self::OPTION_BY_IP_OR_EMAIL, 'label' => __('By IP or Email')],
28+
['value' => self::OPTION_BY_IP_AND_EMAIL, 'label' => __('By IP and Email')],
2929
['value' => self::OPTION_BY_IP, 'label' => __('By IP')],
3030
['value' => self::OPTION_BY_EMAIL, 'label' => __('By Email')],
3131
['value' => self::OPTION_NONE, 'label' => __('None')],
@@ -40,7 +40,7 @@ public function toOptionArray()
4040
public function toArray()
4141
{
4242
return [
43-
self::OPTION_BY_IP_OR_EMAIL => __('By IP or Email'),
43+
self::OPTION_BY_IP_AND_EMAIL => __('By IP and Email'),
4444
self::OPTION_BY_IP => __('By IP'),
4545
self::OPTION_BY_EMAIL => __('By Email'),
4646
self::OPTION_NONE => __('None'),

0 commit comments

Comments
 (0)