Skip to content

Commit

Permalink
fixed print string
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Harris committed Sep 18, 2020
1 parent 9788488 commit d301b68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin.widget.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -544,8 +544,8 @@ public function render_enable_debugging_field()
public function render_transactional_field()
{
printf('<label><input type="checkbox" id="transactional" name="sp_settings[transactional]" value="1" %s />Mark emails as transactional</label>
<br/><small>Upon checked, by default, it\'ll set mark all emails as transactional. It should be set false (using hooks) for non-transactional emails.</small>', <br/><small>Upon checked, by default, it\'ll set mark all emails as transactional. It should be set false (using hooks) for non-transactional emails.</small>',
$this->settings['transactional'] ? 'checked' : ''); $this->settings['transactional'] ? 'checked' : '');
<br/><small>Upon checked, by default, it\'ll set mark all emails as transactional. It should be set false (using hooks) for non-transactional emails.</small>',
$this->settings['transactional'] ? 'checked' : '');
}

public function render_ip_pool_field()
Expand Down

0 comments on commit d301b68

Please sign in to comment.