Plugin Directory

Changeset 3357502


Ignore:
Timestamp:
09/07/2025 07:35:31 PM (6 months ago)
Author:
wpsecuredcom
Message:

Adding the first version of my plugin

Location:
secured-wp
Files:
424 added
5 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • secured-wp/trunk/classes/Helpers/class-ajax-requests.php

    r3357500 r3357502  
    5656         * @return void
    5757         */
    58         public static function delete_remember_me_device( string $device = null, $user = null ) {
     58        public static function delete_remember_me_device( ?string $device = null, $user = null ) {
    5959            if ( ! isset( $_POST['nonce'] ) ||
    6060                empty( $_POST['nonce'] ) ||
  • secured-wp/trunk/classes/Helpers/class-totp-helper.php

    r3357500 r3357502  
    4141         * @since 1.7
    4242         */
    43         public static function generate_qrsvg_data( \WP_User $user = null ): string {
     43        public static function generate_qrsvg_data( ?\WP_User $user = null ): string {
    4444            $otp = TOTP::create( User::get_user_totp( $user ) );
    4545
  • secured-wp/trunk/constants.php

    r3108774 r3357502  
    1616define( 'WPSEC_REQUIRED_PHP_VERSION', '8.0' );
    1717define( 'WPSEC_REQUIRED_WP_VERSION', '6.0' );
    18 define( 'WPSEC_PLUGIN_SECURED_VERSION', '2.1.3' );
     18define( 'WPSEC_PLUGIN_SECURED_VERSION', '2.2.1' );
    1919define( 'WPSEC_PLUGIN_SECURED_NAME', 'Secured WP' );
    2020define( 'WPSEC_PLUGIN_SECURED_SLUG', 'secured-wp' );
  • secured-wp/trunk/readme.txt

    r3357500 r3357502  
    55Tested up to: 6.8.2
    66Requires PHP: 8.1
    7 Stable tag: 2.2.0
     7Stable tag: 2.2.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7777== Changelog ==
    7878
     79= 2.2.1 =
     80PHP 8 fixes.
     81
    7982= 2.2.0 =
    8083Updated libs and fixed deprecations.
  • secured-wp/trunk/secured-wp.php

    r3357500 r3357502  
    1616 * Plugin URI:        https://wp-secured.com
    1717 * Description:       Provides Security for WP sites. 2FA, login attempts, hardens WP login process
    18  * Version:           2.2.0
     18 * Version:           2.2.1
    1919 * Author:            wp-secured
    2020 * Author URI:        https://wp-secured.com
Note: See TracChangeset for help on using the changeset viewer.