Changeset 2370829
- Timestamp:
- 08/28/2020 05:07:44 AM (6 years ago)
- Location:
- wysiwyg-custom-products
- Files:
-
- 4 edited
-
tags/2.0/readme.txt (modified) (1 diff)
-
tags/2.0/wysiwyg-custom-products.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wysiwyg-custom-products.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wysiwyg-custom-products/tags/2.0/readme.txt
r2370761 r2370829 79 79 80 80 == Changelog == 81 82 = 2.0.5 83 * Bug fix - bad handling of background calls 81 84 82 85 = 2.0.4 = -
wysiwyg-custom-products/tags/2.0/wysiwyg-custom-products.php
r2370761 r2370829 47 47 48 48 if ( defined( 'DOING_CRON' ) ) { 49 exit;49 return; 50 50 } 51 51 … … 53 53 $action = $_REQUEST['action'] ?? ''; // should I ignore? 54 54 if ( in_array( $action, [ 'heartbeat', 'wcff_ajax', 'wp_1_wc_privacy_cleanup' ] ) ) { 55 exit;55 return; 56 56 } 57 57 } -
wysiwyg-custom-products/trunk/readme.txt
r2370761 r2370829 79 79 80 80 == Changelog == 81 82 = 2.0.5 83 * Bug fix - bad handling of background calls 81 84 82 85 = 2.0.4 = -
wysiwyg-custom-products/trunk/wysiwyg-custom-products.php
r2370761 r2370829 47 47 48 48 if ( defined( 'DOING_CRON' ) ) { 49 exit;49 return; 50 50 } 51 51 … … 53 53 $action = $_REQUEST['action'] ?? ''; // should I ignore? 54 54 if ( in_array( $action, [ 'heartbeat', 'wcff_ajax', 'wp_1_wc_privacy_cleanup' ] ) ) { 55 exit;55 return; 56 56 } 57 57 }
Note: See TracChangeset
for help on using the changeset viewer.