Plugin Directory

Changeset 3274994


Ignore:
Timestamp:
04/16/2025 05:19:08 PM (12 months ago)
Author:
sjcope
Message:

Fix nonce

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

Legend:

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

    r3274983 r3274994  
    22Contributors: charcope, sjcope
    33Tags: consignment, sell products on consignment
    4 Tested up to: 8
    5 Stable tag: 1.1
     4Tested up to: 6.8
     5Stable tag: 1.2
    66License: GPLv2
    77License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4848== Changelog ==
    4949
     50= 1.2 =
     51Fix nonce
     52
    5053= 1.1 =
    5154Test with WP 6.8
     
    5659== Upgrade Notice ==
    5760
     61= 1.2 =
     62Fixes form submission. Upgrade as soon as possible.
     63
    5864= 1.1 =
    5965Upgrade when possible
  • sell-on-consignment/trunk/includes/class-cwsoc-sell.php

    r3274983 r3274994  
    6060
    6161    public function __construct() {
    62         if ( defined( 'PLUGIN_NAME_VERSION' ) ) {
    63             $this->version = PLUGIN_NAME_VERSION;
     62        if ( defined( 'CWSOC_SELL_VERSION' ) ) {
     63            $this->version = CWSOC_SELL_VERSION;
    6464        } else {
    65             $this->version = '1.1';
     65            $this->version = '1.2';
    6666        }
    6767        $this->plugin_name = 'sell-on-consignment';
  • sell-on-consignment/trunk/sell-on-consignment.php

    r3274983 r3274994  
    1010 *
    1111 * @link              https://charlenesweb.ca/
    12  * @since             1.1
     12 * @since             1.0
    1313 * @package           CWSOC_Sell
    1414 *
    1515 * @wordpress-plugin
    16  * Plugin Name:       Sell On Consignment
    17  * Description:       Sell a product on both your website and on consignment at another store.
    18  * Version:           1.0
    19  * Author:            Charlene's Web Services
    20  * Author URI:        https://charlenesweb.ca/
    21  * License:           GPL v2 or later
    22  * License URI:       https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    23  * Text Domain:       sell-on-consignment
    24  * Domain Path:       /languages
     16 Plugin Name:       Sell On Consignment
     17 Description:       Sell a product on both your website and on consignment at another store.
     18 Version:           1.2
     19 Author:            Charlene's Web Services
     20 Author URI:        https://charlenesweb.ca/
     21 License:           GPL v2 or later
     22 License URI:       https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     23 Text Domain:       sell-on-consignment
     24 Domain Path:       /languages
    2525 */
    2626
     
    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.1' );
     35define( 'CWSOC_SELL_VERSION', '1.2' );
    3636define('CWSOC_SELL_SRC_DIR', dirname(__FILE__) );
    3737/**
Note: See TracChangeset for help on using the changeset viewer.