Plugin Directory

Changeset 3274983


Ignore:
Timestamp:
04/16/2025 04:59:20 PM (12 months ago)
Author:
sjcope
Message:

Fix nonce and test with WP 6.8

Location:
sell-on-consignment
Files:
30 added
6 edited

Legend:

Unmodified
Added
Removed
  • sell-on-consignment/trunk/README.txt

    r3254349 r3274983  
    22Contributors: charcope, sjcope
    33Tags: consignment, sell products on consignment
    4 Tested up to: 6.7
    5 Stable tag: 1.0
     4Tested up to: 8
     5Stable tag: 1.1
    66License: GPLv2
    77License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4848== Changelog ==
    4949
     50= 1.1 =
     51Test with WP 6.8
     52
    5053= 1.0 =
    5154Initial release
     
    5356== Upgrade Notice ==
    5457
     58= 1.1 =
     59Upgrade when possible
     60
    5561= 1.0 =
    5662Initial release
  • sell-on-consignment/trunk/admin/class-cwsoc-sell-admin.php

    r3254349 r3274983  
    5959     * Register the stylesheets for the admin area.
    6060     *
    61      * @since    1.0.0
     61     * @since    1.0
    6262     */
    6363    public function enqueue_styles() {
     
    566566    // validate
    567567    if (isset($_POST['post_id'])) {
    568         check_admin_referer( 'save-product'.sanitize_text_field(wp_unslash($_POST['post_id'])), 'saveproductform');
    569568        $post_id = sanitize_text_field(wp_unslash($_POST['post_id']));
    570569    }
  • sell-on-consignment/trunk/includes/class-cwsoc-sell-activator.php

    r3254349 r3274983  
    55 *
    66 * @link       https://charlenesweb.ca/
    7  * @since      1.0.0
     7 * @since      1.0
    88 *
    99 * @package    Sell_On_Consignment
  • sell-on-consignment/trunk/includes/class-cwsoc-sell.php

    r3254349 r3274983  
    88 *
    99 * @link       https://charlenesweb.ca/
    10  * @since      1.0.0
     10 * @since      1.0
    1111 *
    1212 * @package    CWSOC_Sell
     
    6363            $this->version = PLUGIN_NAME_VERSION;
    6464        } else {
    65             $this->version = '1.0';
     65            $this->version = '1.1';
    6666        }
    6767        $this->plugin_name = 'sell-on-consignment';
     
    138138     * of the plugin.
    139139     *
    140      * @since    1.0.0
     140     * @since    1.0
    141141     * @access   private
    142142     */
  • sell-on-consignment/trunk/public/class-cwsoc-sell-public.php

    r3254349 r3274983  
    4545     * Initialize the class and set its properties.
    4646     *
    47      * @since    1.0.0
     47     * @since    1.0
    4848     * @param      string    $sell_on_consignment       The name of the plugin.
    4949     * @param      string    $version    The version of this plugin.
     
    5959     * Register the stylesheets for the public-facing side of the site.
    6060     *
    61      * @since    1.0.0
     61     * @since    1.0
    6262     */
    6363    public function enqueue_styles() {
     
    7979     * Register the JavaScript for the public-facing side of the site.
    8080     *
    81      * @since    1.0.0
     81     * @since    1.0
    8282     */
    8383    public function enqueue_scripts() {
     
    101101     * Register public Shortcodes
    102102     *
    103      * @since 1.0.0
     103     * @since 1.0
    104104     */
    105105    public function init_shortcodes() {
  • sell-on-consignment/trunk/sell-on-consignment.php

    r3254349 r3274983  
    1010 *
    1111 * @link              https://charlenesweb.ca/
    12  * @since             1.0
     12 * @since             1.1
    1313 * @package           CWSOC_Sell
    1414 *
     
    3333 * First release 1.0.0 and then using SemVer - https://semver.org X.Y.Z (Major.Minor.Patch)
    3434 */
    35 define( 'CWSOC_SELL_VERSION', '1.0' );
     35define( 'CWSOC_SELL_VERSION', '1.1' );
    3636define('CWSOC_SELL_SRC_DIR', dirname(__FILE__) );
    3737/**
Note: See TracChangeset for help on using the changeset viewer.