Skip to content

Commit b08c0ce

Browse files
committed
fix variable name
1 parent 853b46a commit b08c0ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sparkpost.class.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ public function __construct()
4040

4141
public function sp_activate()
4242
{
43-
$options = self::$options_default;
44-
$options['transactional'] = true; // setting it here to apply this default value to new installation only as this is breaking change
45-
update_option('sp_settings', $options);
43+
$settings = self::$settings_default;
44+
$settings['transactional'] = true; // setting it here to apply this default value to new installation only as this is breaking change
45+
update_option('sp_settings', $settings);
4646
}
4747

4848
public function sp_deactivate()

0 commit comments

Comments
 (0)