Plugin Directory

Changeset 3124386


Ignore:
Timestamp:
07/24/2024 06:57:47 AM (20 months ago)
Author:
glomberg
Message:

Version: 2.138.1.

Location:
security-malware-firewall
Files:
524 added
26 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • security-malware-firewall/trunk/inc/spbc-settings.php

    r3123624 r3124386  
    21182118            $user_part .= '<br>' . $allow_layout . ' | ' . $ban_layout;
    21192119
    2120             $url = $row->page;
     2120            $url = Escape::escUrl($row->page);
    21212121            if ($url === null) {
    21222122                $page = '-';
    21232123            } elseif (strlen($url) >= 60) {
    21242124                $page = '<div class="spbcShortText">'
    2125                     . '<a href="' . Escape::escAttr($url) . '" target="_blank">' . substr($url, 0, 60) . '...</a>'
     2125                    . '<a href="' . $url . '" target="_blank">' . substr($url, 0, 60) . '...</a>'
    21262126                    . '</div>'
    21272127                    . '<div class="spbcFullText spbcFullText-right spbc_hide_table_cell_desc">'
    2128                     . '<a href="' . Escape::escAttr($url) . '" target="_blank">' . $url . '</a>'
     2128                    . '<a href="' . $url . '" target="_blank">' . $url . '</a>'
    21292129                    . '</div>';
    21302130            } else {
    2131                 $page = "<a href='" . Escape::escAttr($url) . "' target='_blank'>" . $url . "</a>";
     2131                $page = "<a href='" . $url . "' target='_blank'>" . $url . "</a>";
    21322132            }
    21332133
  • security-malware-firewall/trunk/readme.txt

    r3123624 r3124386  
    55Tested up to: 6.6
    66Requires PHP: 5.6
    7 Stable tag: 2.138
     7Stable tag: 2.138.1
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    338338== Changelog ==
    339339
     340= 2.138 July 24 2024
     341* Fix. Settings. Security logs display fixed.
     342* Revert "Fix. FS Watcher. Module working only in the admin side."
     343
    340344= 2.138 July 23 2024
    341345* New. Settings. Added alarm to admin menu.
  • security-malware-firewall/trunk/security-malware-firewall.php

    r3123624 r3124386  
    66Description: Security & Malware scan by CleanTalk to protect your website from online threats and viruses. IP/Country FireWall, Web application FireWall. Detailed stats and logs to have full control.
    77Author: CleanTalk Security
    8 Version: 2.138
     8Version: 2.138.1
    99Author URI: https://cleantalk.org
    1010Text Domain: security-malware-firewall
     
    408408}
    409409
    410 add_action('admin_init', function () use ($spbc) {
     410add_action('init', function () use ($spbc) {
    411411    if ( $spbc->feature_restrictions->getState($spbc, 'fswatcher')->is_active && $spbc->settings['scanner__fs_watcher'] ) {
    412412        $fswatch_params = array(
Note: See TracChangeset for help on using the changeset viewer.