Skip to content

Commit

Permalink
Fix. Code. Code style fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Glomberg committed Nov 28, 2023
1 parent 2e9df24 commit ac8e3ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/spbc-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -2136,10 +2136,10 @@ function spbc_field_traffic_control_logs__prepare_data(&$table)
$status = '<span class="spbcGreen">' . $passed_text . '</span>';
break;
case 'PASS_BY_TRUSTED_NETWORK':
$status = '<span class="spbcGreen">' . $passed_text . ' '. __('Trusted network. Click on IP for details.', 'security-malware-firewall') . '</span>';
$status = '<span class="spbcGreen">' . $passed_text . ' ' . __('Trusted network. Click on IP for details.', 'security-malware-firewall') . '</span>';
break;
case 'PASS_BY_WHITELIST':
$status = '<span class="spbcGreen">' . $passed_text . ' ' .__('Whitelisted.', 'security-malware-firewall') . '</span>';
$status = '<span class="spbcGreen">' . $passed_text . ' ' . __('Whitelisted.', 'security-malware-firewall') . '</span>';
break;
case 'DENY':
$status = '<span class="spbcRed">' . $blocked_text . ' ' . __('Blacklisted.', 'security-malware-firewall') . '</span>';
Expand Down

0 comments on commit ac8e3ac

Please sign in to comment.