Changeset 2929604
- Timestamp:
- 06/22/2023 09:53:01 AM (3 years ago)
- Location:
- visual-regression-tests
- Files:
-
- 6 edited
- 1 copied
-
tags/1.5.1 (copied) (copied from visual-regression-tests/trunk)
-
tags/1.5.1/includes/features/class-metaboxes.php (modified) (1 diff)
-
tags/1.5.1/readme.txt (modified) (2 diffs)
-
tags/1.5.1/visual-regression-tests.php (modified) (1 diff)
-
trunk/includes/features/class-metaboxes.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/visual-regression-tests.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
visual-regression-tests/tags/1.5.1/includes/features/class-metaboxes.php
r2922909 r2929604 232 232 public function update_rest_data( $post, $request ) { 233 233 $vrts_params = $request->get_param( 'vrts' ); 234 if ( array_key_exists( 'hide_css_selectors', $vrts_params ) ) {234 if ( array_key_exists( 'hide_css_selectors', $vrts_params ?? [] ) ) { 235 235 $hide_css_selectors = $vrts_params['hide_css_selectors'] ? sanitize_text_field( $vrts_params['hide_css_selectors'] ) : ''; 236 236 $test_id = Test::get_item_id( $post->ID ); -
visual-regression-tests/tags/1.5.1/readme.txt
r2929241 r2929604 4 4 Requires at least: 5.0 5 5 Tested up to: 6.2 6 Stable tag: 1.5. 06 Stable tag: 1.5.1 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 160 160 161 161 == Changelog == 162 163 = 1.5.1 = 164 * Fixed issues with empty rest data on post update 162 165 163 166 = 1.5.0 = -
visual-regression-tests/tags/1.5.1/visual-regression-tests.php
r2929241 r2929604 4 4 * Plugin URI: https://bleech.de/en/products/visual-regression-tests/ 5 5 * Description: Test your website for unwanted visual changes. Run automatic tests and spot differences. 6 * Version: 1.5. 06 * Version: 1.5.1 7 7 * Requires at least: 5.0 8 8 * Requires PHP: 7.0 -
visual-regression-tests/trunk/includes/features/class-metaboxes.php
r2922909 r2929604 232 232 public function update_rest_data( $post, $request ) { 233 233 $vrts_params = $request->get_param( 'vrts' ); 234 if ( array_key_exists( 'hide_css_selectors', $vrts_params ) ) {234 if ( array_key_exists( 'hide_css_selectors', $vrts_params ?? [] ) ) { 235 235 $hide_css_selectors = $vrts_params['hide_css_selectors'] ? sanitize_text_field( $vrts_params['hide_css_selectors'] ) : ''; 236 236 $test_id = Test::get_item_id( $post->ID ); -
visual-regression-tests/trunk/readme.txt
r2929241 r2929604 4 4 Requires at least: 5.0 5 5 Tested up to: 6.2 6 Stable tag: 1.5. 06 Stable tag: 1.5.1 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 160 160 161 161 == Changelog == 162 163 = 1.5.1 = 164 * Fixed issues with empty rest data on post update 162 165 163 166 = 1.5.0 = -
visual-regression-tests/trunk/visual-regression-tests.php
r2929241 r2929604 4 4 * Plugin URI: https://bleech.de/en/products/visual-regression-tests/ 5 5 * Description: Test your website for unwanted visual changes. Run automatic tests and spot differences. 6 * Version: 1.5. 06 * Version: 1.5.1 7 7 * Requires at least: 5.0 8 8 * Requires PHP: 7.0
Note: See TracChangeset
for help on using the changeset viewer.