Plugin Directory

Changeset 3053912


Ignore:
Timestamp:
03/18/2024 09:09:22 PM (22 months ago)
Author:
datafeedr.com
Message:

Update to version 1.0.34 from GitHub

Location:
woocommerce-cloak-affiliate-links
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woocommerce-cloak-affiliate-links/tags/1.0.34/readme.txt

    r2994003 r3053912  
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
    88Requires at least: 4.7.0
    9 Tested up to: 6.4.2-alpha
    10 Stable tag: 1.0.33
     9Tested up to: 6.4.3
     10Stable tag: 1.0.34
    1111
    1212Cloak your WooCommerce external & affiliate links.
     
    4646
    4747== Changelog ==
     48
     49= 1.0.34 - 2024/03/18 =
     50* Updated permalink saving.
    4851
    4952= 1.0.33 - 2023/11/10 =
  • woocommerce-cloak-affiliate-links/tags/1.0.34/woocommerce-cloak-affiliate-links.php

    r2994003 r3053912  
    88License: GPL v3
    99Requires at least: 4.7.0
    10 Tested up to: 6.4.2-alpha
    11 Version: 1.0.33
     10Tested up to: 6.4.3
     11Version: 1.0.34
    1212
    1313WC requires at least: 3.0
    14 WC tested up to: 8.2
     14WC tested up to: 8.6
    1515
    1616WooCommerce Cloak Affiliate Links plugin
    17 Copyright (C) 2023, Datafeedr - [email protected]
     17Copyright (C) 2024, Datafeedr - [email protected]
    1818
    1919This program is free software: you can redistribute it and/or modify
     
    3838 * Define constants.
    3939 */
    40 define( 'WCCAL_VERSION', '1.0.33' );
     40define( 'WCCAL_VERSION', '1.0.34' );
    4141define( 'WCCAL_URL', plugin_dir_url( __FILE__ ) );
    4242define( 'WCCAL_PATH', plugin_dir_path( __FILE__ ) );
     
    395395         */
    396396        function permalink_settings_save() {
    397             if ( ! is_admin() ) {
     397            if ( ! is_admin() || ! current_user_can( 'manage_options' ) ) {
    398398                return;
    399399            }
  • woocommerce-cloak-affiliate-links/trunk/readme.txt

    r2994003 r3053912  
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
    88Requires at least: 4.7.0
    9 Tested up to: 6.4.2-alpha
    10 Stable tag: 1.0.33
     9Tested up to: 6.4.3
     10Stable tag: 1.0.34
    1111
    1212Cloak your WooCommerce external & affiliate links.
     
    4646
    4747== Changelog ==
     48
     49= 1.0.34 - 2024/03/18 =
     50* Updated permalink saving.
    4851
    4952= 1.0.33 - 2023/11/10 =
  • woocommerce-cloak-affiliate-links/trunk/woocommerce-cloak-affiliate-links.php

    r2994003 r3053912  
    88License: GPL v3
    99Requires at least: 4.7.0
    10 Tested up to: 6.4.2-alpha
    11 Version: 1.0.33
     10Tested up to: 6.4.3
     11Version: 1.0.34
    1212
    1313WC requires at least: 3.0
    14 WC tested up to: 8.2
     14WC tested up to: 8.6
    1515
    1616WooCommerce Cloak Affiliate Links plugin
    17 Copyright (C) 2023, Datafeedr - [email protected]
     17Copyright (C) 2024, Datafeedr - [email protected]
    1818
    1919This program is free software: you can redistribute it and/or modify
     
    3838 * Define constants.
    3939 */
    40 define( 'WCCAL_VERSION', '1.0.33' );
     40define( 'WCCAL_VERSION', '1.0.34' );
    4141define( 'WCCAL_URL', plugin_dir_url( __FILE__ ) );
    4242define( 'WCCAL_PATH', plugin_dir_path( __FILE__ ) );
     
    395395         */
    396396        function permalink_settings_save() {
    397             if ( ! is_admin() ) {
     397            if ( ! is_admin() || ! current_user_can( 'manage_options' ) ) {
    398398                return;
    399399            }
Note: See TracChangeset for help on using the changeset viewer.