Changeset 3400098
- Timestamp:
- 11/21/2025 12:08:04 AM (4 months ago)
- Location:
- secuplug/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
securefusion.php (modified) (3 diffs)
-
src/Lib/Main.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
secuplug/trunk/readme.txt
r3366125 r3400098 4 4 Requires at least: 4.9 5 5 Tested up to: 6.8 6 Stable tag: 1.4. 36 Stable tag: 1.4.4 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 97 97 98 98 == Changelog == 99 = 1.4.4 = 100 * Fixed: Fixed a PHP Fatal Error during initial plugin activation 101 99 102 = 1.4.3 = 100 103 * Fixed: CSP bugs and optimized -
secuplug/trunk/securefusion.php
r3366125 r3400098 8 8 * Description: SecureFusion is a lightweight, robust security plugin for WordPress. 9 9 * It gives you the ability to disable specific XML-RPC services, alter the login page address, and force SSL on pages. 10 * Version: 1.4. 310 * Version: 1.4.4 11 11 * Author: codeplusdev <contact@codeplus.dev> 12 12 * Author URI: https://profiles.wordpress.org/codeplusdev/ … … 20 20 21 21 if ( ! defined( 'SECUREFUSION_VERSION' ) ) { 22 define( 'SECUREFUSION_VERSION', '1.4. 3' );22 define( 'SECUREFUSION_VERSION', '1.4.4' ); 23 23 } 24 24 … … 47 47 48 48 register_activation_hook( __FILE__, array( $securefusion, 'activate' ) ); 49 register_deactivation_hook( __FILE__, array( $securefusion, 'deactivate' ) ); -
secuplug/trunk/src/Lib/Main.php
r3366125 r3400098 99 99 100 100 $old_settings = get_option( 'secuplug_settings' ); 101 $new_settings = get_option( 'securefusion_settings' );101 $new_settings = get_option( 'securefusion_settings', array() ); 102 102 103 103 // Update new slug in option table … … 138 138 dbDelta( $sql ); 139 139 } 140 141 public function deactivate() 142 { 143 delete_option( 'secuplug_settings' ); 144 delete_option( 'securefusion_settings' ); 145 } 140 146 }
Note: See TracChangeset
for help on using the changeset viewer.