Changeset 3136796
- Timestamp:
- 08/16/2024 07:30:26 PM (20 months ago)
- Location:
- woo-default-attributes/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (2 diffs)
-
woo-default-attributes.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-default-attributes/trunk/README.txt
r1989793 r3136796 4 4 Requires at least: 4.4 5 5 Tested up to: 4.9.4 6 Stable tag: 1.0. 46 Stable tag: 1.0.5 7 7 Requires at least WooCommerce: 2.5 8 8 Tested up to WooCommerce: 3.3.3 … … 48 48 == Changelog == 49 49 50 = 1.0.5 = 51 * Fix PHP 8.2 Creation of dynamic property is deprecated 52 50 53 = 1.0.4 = 51 54 * Fix PHP notice when $screen is not available. Thanks @JeroenSormani for the fix -
woo-default-attributes/trunk/woo-default-attributes.php
r1989793 r3136796 3 3 * Plugin Name: Woo Default Attributes 4 4 * Description: Define default attributes to be automatically added in WooCommerce new product page. 5 * Author: Kuuak 6 * Version: 1.0.4 5 * Version: 1.0.5 7 6 * Author URI: https://profiles.wordpress.org/kuuak 8 7 * License: GPL-2.0+ … … 69 68 */ 70 69 protected $dir_uri; 70 71 72 /** 73 * The name of the plugin used to uniquely identify it within the 74 * context of WordPress and to define internationalization functionality. 75 * 76 * @since 1.0.5 77 * @access protected 78 * @var string $plugin_name The name of the plugin. 79 */ 80 protected $plugin_name; 71 81 72 82 /**
Note: See TracChangeset
for help on using the changeset viewer.