Skip to content

Commit

Permalink
Release. Bugfix. Vulnerability alarm. (#456)
Browse files Browse the repository at this point in the history
Release. Bugfix. Vulnerability alarm.
  • Loading branch information
Glomberg authored Dec 26, 2024
2 parents a67be9f + 47f9692 commit dc6a945
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,15 @@ public static function getModules()
];
}

foreach ($plugins as $plugin) {
foreach ($plugins as $plugin_file => $plugin) {
$plugin_dirname = dirname(plugin_basename($plugin_file));
if ( '.' !== $plugin_dirname && strpos($plugin_dirname, '/') === false ) {
$plugin_slug = sanitize_title($plugin_dirname);
} else {
$plugin_slug = sanitize_title($plugin['Name']);
}
$modules['plugins'][] = [
sanitize_title($plugin['TextDomain'], $plugin['Name']),
$plugin_slug,
$plugin['Version']
];
}
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: security, firewall, malware, wordpress security, brute force
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 5.6
Stable tag: 2.148
Stable tag: 2.148.1
License: GPLv2
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -339,6 +339,9 @@ This is required for the Security FireWall to function properly. Plugins that ar

== Changelog ==

= 2.148.1 Dec 23 2024
* Fix. Vulnerability alarm. False detected vulnerabilities fixed.

= 2.148 Dec 09 2024
* New. Plugin settings. Navigation bar implemented for settings general.
* Upd. Code. Removed the plugin dependency on jQuery for site public pages.
Expand Down
2 changes: 1 addition & 1 deletion security-malware-firewall.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Plugin URI: https://wordpress.org/plugins/security-malware-firewall/
Description: 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.
Author: CleanTalk Security
Version: 2.148
Version: 2.148.1
Author URI: https://cleantalk.org
Text Domain: security-malware-firewall
Domain Path: /i18n
Expand Down

0 comments on commit dc6a945

Please sign in to comment.