Plugin Directory

Changeset 3434869


Ignore:
Timestamp:
01/08/2026 05:49:49 AM (4 days ago)
Author:
Litonice13
Message:

Update to version 4.0.7.2 from GitHub

Location:
adminify
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • adminify/tags/4.0.7.2/Inc/Classes/Notifications/Latest_Updates.php

    r3434268 r3434869  
    2525            parent::__construct();
    2626            if(is_admin()){
    27                 add_action( 'admin_footer', array( $this, 'jltwp_handle_plugin_update_notice_dismiss' ),99999 );
     27        add_action( 'admin_footer', array( $this, 'jltwp_handle_plugin_update_notice_dismiss' ),99999 );
    2828                add_action( 'wp_ajax_jltwp_plugin_update_info', array( $this, 'jltwp_plugin_update_info' ) );
    29             }
     29      }
    3030        }
    3131
    32         /**
    33         * Handles the AJAX request for the plugin update info notice dismissal.
    34         *
    35         * Triggered when the user clicks the Dismiss button in the notice.
    36         *
    37         * @since 1.0
    38         *
    39         * @return void
    40         */
     32        /**
     33        * Handles the AJAX request for the plugin update info notice dismissal.
     34        *
     35        * Triggered when the user clicks the Dismiss button in the notice.
     36        *
     37        * @since 1.0
     38        *
     39        * @return void
     40        */
    4141        public function jltwp_plugin_update_info() {
    4242            if (!current_user_can('install_plugins')) {
    43                 return;
    44             }
     43                return;
     44            }
    4545
    46             // Verify nonce for security.
    47             check_ajax_referer( 'dismiss_notice_nonce', 'nonce' );
    48             wp_send_json_success( array( 'message' => 'Notice dismissed.', 'data' => update_option('_wpadminify_plugin_update_info_notice', "dismissed" ) ) );
     46            // Verify nonce for security.
     47            check_ajax_referer( 'dismiss_notice_nonce', 'nonce' );
     48            wp_send_json_success( array( 'message' => 'Notice dismissed.', 'data' => update_option('_wpadminify_plugin_update_info_notice', "dismissed" ) ) );
    4949        }
    5050
     
    6767
    6868                    '<h3 class="adminify-update-head">' . WP_ADMINIFY . ' <span><small><em>v' . esc_html(WP_ADMINIFY_VER) . '</em></small>' . __(' has some updates..', 'adminify') . '</span></h3><br>', // %3$s
    69                     __('<span class="dashicons dashicons-yes"></span> <span class="adminify-changes-list"> <strong>Added:</strong> Patchstack Vulnerability FAQ added. </span><br>', 'adminify')
     69                    __('<span class="dashicons dashicons-yes"></span> <span class="adminify-changes-list"> <strong>Fixed:</strong> Admin pages notice hidden issue fixed. </span><br>', 'adminify')
    7070                );
    7171                printf(wp_kses_post($jltwp_adminify_changelog_message));
  • adminify/tags/4.0.7.2/adminify.php

    r3434268 r3434869  
    66 * Plugin URI: https://wpadminify.com
    77 * Author: Jewel Theme
    8  * Version: 4.0.7.1
     8 * Version: 4.0.7.2
    99 * Author URI: https://wpadminify.com
    1010 * License:     GPLv3 or later
  • adminify/tags/4.0.7.2/changelog.txt

    r3434268 r3434869  
    11== Changelog ==
     2= 4.0.7.2 (08-01-2026) =
     3* Fixed: Admin pages notice hidden issue fixed.
     4
    25= 4.0.7.1 (07-01-2026) =
    36* Added: Patchstack Vulnerability FAQ added.
  • adminify/tags/4.0.7.2/readme.txt

    r3434268 r3434869  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 4.0.7.1
     7Stable tag: 4.0.7.2
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    150150
    151151== Changelog ==
     152= 4.0.7.2 (08-01-2026) =
     153* Fixed: Admin pages notice hidden issue fixed.
     154
    152155= 4.0.7.1 (07-01-2026) =
    153156* Added: Patchstack Vulnerability FAQ added.
  • adminify/trunk/Inc/Classes/Notifications/Latest_Updates.php

    r3434268 r3434869  
    2525            parent::__construct();
    2626            if(is_admin()){
    27                 add_action( 'admin_footer', array( $this, 'jltwp_handle_plugin_update_notice_dismiss' ),99999 );
     27        add_action( 'admin_footer', array( $this, 'jltwp_handle_plugin_update_notice_dismiss' ),99999 );
    2828                add_action( 'wp_ajax_jltwp_plugin_update_info', array( $this, 'jltwp_plugin_update_info' ) );
    29             }
     29      }
    3030        }
    3131
    32         /**
    33         * Handles the AJAX request for the plugin update info notice dismissal.
    34         *
    35         * Triggered when the user clicks the Dismiss button in the notice.
    36         *
    37         * @since 1.0
    38         *
    39         * @return void
    40         */
     32        /**
     33        * Handles the AJAX request for the plugin update info notice dismissal.
     34        *
     35        * Triggered when the user clicks the Dismiss button in the notice.
     36        *
     37        * @since 1.0
     38        *
     39        * @return void
     40        */
    4141        public function jltwp_plugin_update_info() {
    4242            if (!current_user_can('install_plugins')) {
    43                 return;
    44             }
     43                return;
     44            }
    4545
    46             // Verify nonce for security.
    47             check_ajax_referer( 'dismiss_notice_nonce', 'nonce' );
    48             wp_send_json_success( array( 'message' => 'Notice dismissed.', 'data' => update_option('_wpadminify_plugin_update_info_notice', "dismissed" ) ) );
     46            // Verify nonce for security.
     47            check_ajax_referer( 'dismiss_notice_nonce', 'nonce' );
     48            wp_send_json_success( array( 'message' => 'Notice dismissed.', 'data' => update_option('_wpadminify_plugin_update_info_notice', "dismissed" ) ) );
    4949        }
    5050
     
    6767
    6868                    '<h3 class="adminify-update-head">' . WP_ADMINIFY . ' <span><small><em>v' . esc_html(WP_ADMINIFY_VER) . '</em></small>' . __(' has some updates..', 'adminify') . '</span></h3><br>', // %3$s
    69                     __('<span class="dashicons dashicons-yes"></span> <span class="adminify-changes-list"> <strong>Added:</strong> Patchstack Vulnerability FAQ added. </span><br>', 'adminify')
     69                    __('<span class="dashicons dashicons-yes"></span> <span class="adminify-changes-list"> <strong>Fixed:</strong> Admin pages notice hidden issue fixed. </span><br>', 'adminify')
    7070                );
    7171                printf(wp_kses_post($jltwp_adminify_changelog_message));
  • adminify/trunk/adminify.php

    r3434268 r3434869  
    66 * Plugin URI: https://wpadminify.com
    77 * Author: Jewel Theme
    8  * Version: 4.0.7.1
     8 * Version: 4.0.7.2
    99 * Author URI: https://wpadminify.com
    1010 * License:     GPLv3 or later
  • adminify/trunk/changelog.txt

    r3434268 r3434869  
    11== Changelog ==
     2= 4.0.7.2 (08-01-2026) =
     3* Fixed: Admin pages notice hidden issue fixed.
     4
    25= 4.0.7.1 (07-01-2026) =
    36* Added: Patchstack Vulnerability FAQ added.
  • adminify/trunk/readme.txt

    r3434268 r3434869  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 4.0.7.1
     7Stable tag: 4.0.7.2
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    150150
    151151== Changelog ==
     152= 4.0.7.2 (08-01-2026) =
     153* Fixed: Admin pages notice hidden issue fixed.
     154
    152155= 4.0.7.1 (07-01-2026) =
    153156* Added: Patchstack Vulnerability FAQ added.
Note: See TracChangeset for help on using the changeset viewer.