Plugin Directory

Changeset 3291514


Ignore:
Timestamp:
05/12/2025 04:11:38 AM (9 months ago)
Author:
awcode
Message:

tag 1.0.19

Location:
awcode-toolkit
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • awcode-toolkit/tags/1.0.19/aw-toolkit.php

    r3218626 r3291514  
    22/*
    33 * Plugin Name: AWcode Toolkit
    4  * Version: 1.0.18
     4 * Version: 1.0.19
    55 * Description: A collection of useful tools and functions for Wordpress site owners
    66 * Author: AWcode
    77 * Author URI: https://awcode.com/
    88 * Requires at least: 5.0
    9  * Tested up to: 6.7
     9 * Tested up to: 6.8.1
    1010 * License: GPLv2
    1111 *
  • awcode-toolkit/tags/1.0.19/includes/class.awtoolkit-setting.php

    r3217512 r3291514  
    1010function awtoolbox_dashboard(){
    1111    if(isset($_POST['action']) && $_POST['action'] == 'updating-awtoolkit'){
     12        if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'updating-awtoolkit' ) ) {
     13            die( __( 'Security check') );
     14        }
    1215        update_option('aw_woo_prod_sales_count', isset($_POST['aw_woo_prod_sales_count']) ? $_POST['aw_woo_prod_sales_count'] : '', 'yes');
    1316        update_option('aw_woo_prod_dimensions', isset($_POST['aw_woo_prod_dimensions']) ? $_POST['aw_woo_prod_dimensions'] : '', 'yes');
  • awcode-toolkit/tags/1.0.19/readme.txt

    r3218626 r3291514  
    44Tags: woocommerce, cloudflare, awcode, web developer, web design
    55Requires at least: 5.0
    6 Tested up to: 6.7
    7 Stable tag: 1.0.18
     6Tested up to: 6.8.1
     7Stable tag: 1.0.19
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5050== Upgrade Notice ==
    5151
    52 = 1.0.18 =
    53 Fix error on settings page
     52= 1.0.19 =
     53Security Enhancements
    5454
    5555== Changelog ==
     56
     57= 1.0.19 =
     58Security Enhancements
    5659
    5760= 1.0.18 =
  • awcode-toolkit/trunk/aw-toolkit.php

    r3218626 r3291514  
    22/*
    33 * Plugin Name: AWcode Toolkit
    4  * Version: 1.0.18
     4 * Version: 1.0.19
    55 * Description: A collection of useful tools and functions for Wordpress site owners
    66 * Author: AWcode
    77 * Author URI: https://awcode.com/
    88 * Requires at least: 5.0
    9  * Tested up to: 6.7
     9 * Tested up to: 6.8.1
    1010 * License: GPLv2
    1111 *
  • awcode-toolkit/trunk/includes/class.awtoolkit-setting.php

    r3217512 r3291514  
    1010function awtoolbox_dashboard(){
    1111    if(isset($_POST['action']) && $_POST['action'] == 'updating-awtoolkit'){
     12        if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'updating-awtoolkit' ) ) {
     13            die( __( 'Security check') );
     14        }
    1215        update_option('aw_woo_prod_sales_count', isset($_POST['aw_woo_prod_sales_count']) ? $_POST['aw_woo_prod_sales_count'] : '', 'yes');
    1316        update_option('aw_woo_prod_dimensions', isset($_POST['aw_woo_prod_dimensions']) ? $_POST['aw_woo_prod_dimensions'] : '', 'yes');
  • awcode-toolkit/trunk/readme.txt

    r3218626 r3291514  
    44Tags: woocommerce, cloudflare, awcode, web developer, web design
    55Requires at least: 5.0
    6 Tested up to: 6.7
    7 Stable tag: 1.0.18
     6Tested up to: 6.8.1
     7Stable tag: 1.0.19
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5050== Upgrade Notice ==
    5151
    52 = 1.0.18 =
    53 Fix error on settings page
     52= 1.0.19 =
     53Security Enhancements
    5454
    5555== Changelog ==
     56
     57= 1.0.19 =
     58Security Enhancements
    5659
    5760= 1.0.18 =
Note: See TracChangeset for help on using the changeset viewer.