Plugin Directory

Changeset 3428086


Ignore:
Timestamp:
12/27/2025 06:06:00 AM (3 months ago)
Author:
addonify
Message:

Update to version 1.2.16 from GitHub

Location:
addonify-floating-cart
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • addonify-floating-cart/tags/1.2.16/README.txt

    r3277408 r3428086  
    66Requires PHP: 7.4
    77Tested up to: 6.8
    8 Stable tag: 1.2.15
     8Stable tag: 1.2.16
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    132132== Changelog ==
    133133
     134= 1.2.16 - 27 December, 2025 =
     135
     136- Fixed: Unauthenticated attacker can update option value for "udp_agent_allow_tracking" via "init" hook.
     137- Tested: Up to WordPress version 6.9
     138
    134139= 1.2.15 - 20 April, 2025 =
    135140
  • addonify-floating-cart/tags/1.2.16/addonify-floating-cart.php

    r3277408 r3428086  
    1414 * Requires at least: 6.0.0
    1515 * Requires PHP:      7.4
    16  * Tested up to:      6.8
     16 * Tested up to:      6.9
    1717 * Author:            Addonify
    1818 * Author URI:        https://addonify.com/
     
    3434 * Rename this for your plugin and update it as you release new versions.
    3535 */
    36 define( 'ADDONIFY_FLOATING_CART_VERSION', '1.2.15' );
     36define( 'ADDONIFY_FLOATING_CART_VERSION', '1.2.16' );
    3737define( 'ADDONIFY_FLOATING_CART_BASENAME', plugin_basename( __FILE__ ) );
    3838define( 'ADDONIFY_FLOATING_CART_PATH', plugin_dir_path( __FILE__ ) );
  • addonify-floating-cart/tags/1.2.16/includes/udp/class-udp-agent.php

    r3203981 r3428086  
    173173     */
    174174    private function process_user_tracking_choice() {
     175        // Check if the user is logged in and has the capability to manage options.
     176        if ( ! is_user_logged_in() || ! current_user_can( 'manage_options' ) ) {
     177            // Redirect to home page.
     178            wp_safe_redirect( home_url() );
     179            exit;
     180        }
    175181
    176182        $users_choice = isset( $_GET['udp-agent-allow-access'] ) ? sanitize_text_field( wp_unslash( $_GET['udp-agent-allow-access'] ) ) : ''; //phpcs:ignore
  • addonify-floating-cart/trunk/README.txt

    r3277408 r3428086  
    66Requires PHP: 7.4
    77Tested up to: 6.8
    8 Stable tag: 1.2.15
     8Stable tag: 1.2.16
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    132132== Changelog ==
    133133
     134= 1.2.16 - 27 December, 2025 =
     135
     136- Fixed: Unauthenticated attacker can update option value for "udp_agent_allow_tracking" via "init" hook.
     137- Tested: Up to WordPress version 6.9
     138
    134139= 1.2.15 - 20 April, 2025 =
    135140
  • addonify-floating-cart/trunk/addonify-floating-cart.php

    r3277408 r3428086  
    1414 * Requires at least: 6.0.0
    1515 * Requires PHP:      7.4
    16  * Tested up to:      6.8
     16 * Tested up to:      6.9
    1717 * Author:            Addonify
    1818 * Author URI:        https://addonify.com/
     
    3434 * Rename this for your plugin and update it as you release new versions.
    3535 */
    36 define( 'ADDONIFY_FLOATING_CART_VERSION', '1.2.15' );
     36define( 'ADDONIFY_FLOATING_CART_VERSION', '1.2.16' );
    3737define( 'ADDONIFY_FLOATING_CART_BASENAME', plugin_basename( __FILE__ ) );
    3838define( 'ADDONIFY_FLOATING_CART_PATH', plugin_dir_path( __FILE__ ) );
  • addonify-floating-cart/trunk/includes/udp/class-udp-agent.php

    r3203981 r3428086  
    173173     */
    174174    private function process_user_tracking_choice() {
     175        // Check if the user is logged in and has the capability to manage options.
     176        if ( ! is_user_logged_in() || ! current_user_can( 'manage_options' ) ) {
     177            // Redirect to home page.
     178            wp_safe_redirect( home_url() );
     179            exit;
     180        }
    175181
    176182        $users_choice = isset( $_GET['udp-agent-allow-access'] ) ? sanitize_text_field( wp_unslash( $_GET['udp-agent-allow-access'] ) ) : ''; //phpcs:ignore
Note: See TracChangeset for help on using the changeset viewer.