Changeset 2351374
- Timestamp:
- 08/03/2020 08:10:42 AM (6 years ago)
- Location:
- orderbee/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (2 diffs)
-
orderbee.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
orderbee/trunk/README.txt
r2347189 r2351374 4 4 Requires at least: 4.0.1 5 5 Tested up to: 5.4.2 6 Stable tag: 1.2. 46 Stable tag: 1.2.5 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 37 37 38 38 == Changelog == 39 40 = 1.2.5 = 41 * Bug fixing : Synch moving to every 15min 39 42 40 43 = 1.2.4 = -
orderbee/trunk/orderbee.php
r2347189 r2351374 17 17 * Plugin URI: https://www.orderbee.be 18 18 * Description: This plugin makes a fast and safe connection between your Woocommerce and OrderBee. 19 * Version: 1.2. 419 * Version: 1.2.5 20 20 * Author: OrderBee 21 21 * Author URI: https://www.orderbee.be … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define('ORDERBEE_VERSION', '1.2. 4');37 define('ORDERBEE_VERSION', '1.2.5'); 38 38 39 39 /** … … 119 119 register_activation_hook(__FILE__, 'obfrwc_activation'); 120 120 121 /*122 THIS IS NO LONGER NEEDED, FOR NOW123 121 function obfrwc_activation() { 124 122 wp_schedule_event(strtotime('00:13:00'), 'every_15_minutes', 'obfrwc_every_15minutes'); 125 123 } 126 */ 127 128 } 129 /* 130 THIS IS NO LONGER NEEDED, FOR NOW 124 125 } 131 126 if (!function_exists('obfrwc_create_product_txt')) { 132 127 add_action('obfrwc_every_15minutes', 'obfrwc_create_product_txt'); … … 143 138 144 139 } 145 */146 140 147 141 if (!function_exists('obfrwc_deactivation')) { … … 150 144 151 145 function obfrwc_deactivation() { 152 /* 153 THIS IS NO LONGER NEEDED, FOR NOW 146 154 147 wp_clear_scheduled_hook('obfrwc_every_15minutes'); 155 */ 148 156 149 } 157 150
Note: See TracChangeset
for help on using the changeset viewer.