Changeset 2891064
- Timestamp:
- 03/31/2023 09:20:54 AM (3 years ago)
- Location:
- racar-clear-cart-for-woocommerce/trunk
- Files:
-
- 3 edited
-
includes/admin/class-rccwoo_Admin_Options.php (modified) (4 diffs)
-
racar-clear-cart-for-woocommerce.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
racar-clear-cart-for-woocommerce/trunk/includes/admin/class-rccwoo_Admin_Options.php
r2890821 r2891064 412 412 $val = $this->options['rccwoo_background']; 413 413 } 414 $html = '<input type="text" id="rccwoo_background" class="rccwoo-colorpicker" name="rccwoo_settings[rccwoo_background]" value="' . $val . '" ';414 $html = '<input type="text" id="rccwoo_background" class="rccwoo-colorpicker" name="rccwoo_settings[rccwoo_background]" value="' . $val . '" />'; 415 415 echo wp_kses( $html , $allowed_html ); 416 416 } … … 422 422 $val = $this->options['rccwoo_background_hover_color']; 423 423 } 424 $html = '<input type="text" id="rccwoo_background_hover_color" class="rccwoo-colorpicker" name="rccwoo_settings[rccwoo_background_hover_color]" value="' . $val . '" ';424 $html = '<input type="text" id="rccwoo_background_hover_color" class="rccwoo-colorpicker" name="rccwoo_settings[rccwoo_background_hover_color]" value="' . $val . '" />'; 425 425 echo wp_kses( $html , $allowed_html ); 426 426 } … … 432 432 $val = $this->options['rccwoo_text_color']; 433 433 } 434 $html = '<input type="text" id="rccwoo_text_color" class="rccwoo-colorpicker" name="rccwoo_settings[rccwoo_text_color]" value="' . $val . '" ';434 $html = '<input type="text" id="rccwoo_text_color" class="rccwoo-colorpicker" name="rccwoo_settings[rccwoo_text_color]" value="' . $val . '" />'; 435 435 echo wp_kses( $html , $allowed_html ); 436 436 } … … 442 442 $val = $this->options['rccwoo_hover_text_color']; 443 443 } 444 $html = '<input type="text" id="rccwoo_hover_text_color" class="rccwoo-colorpicker" name="rccwoo_settings[rccwoo_hover_text_color]" value="' . $val . '" ';444 $html = '<input type="text" id="rccwoo_hover_text_color" class="rccwoo-colorpicker" name="rccwoo_settings[rccwoo_hover_text_color]" value="' . $val . '" />'; 445 445 echo wp_kses( $html , $allowed_html ); 446 446 } -
racar-clear-cart-for-woocommerce/trunk/racar-clear-cart-for-woocommerce.php
r2890821 r2891064 4 4 * Plugin URI: https://github.com/rafacarvalhido/racar-clear-cart-woo 5 5 * Description: This plugin adds a convenient button to empty the shopping cart. Clear the entire cart with one click. 6 * Version: 2.0. 26 * Version: 2.0.3 7 7 * Author: Rafa Carvalhido 8 8 * Author URI: https://programawordpress.pro.br/blog/contato/rafa-carvalhido/ … … 56 56 $rccwoo_basename = plugin_basename(__FILE__);//racar-clear-cart-for-woocommerce/racar-clear-cart-for-woocommerce.php 57 57 58 $rccwoo_VERSION = '2.0. 2';58 $rccwoo_VERSION = '2.0.3'; 59 59 60 60 $rccwoo_NOME_STYLESHEET = 'rccwoo-stylesheet'; -
racar-clear-cart-for-woocommerce/trunk/readme.txt
r2890821 r2891064 5 5 Requires at least: 4.9.8 6 6 Tested up to: 6.1.1 7 Stable tag: 2.0. 27 Stable tag: 2.0.3 8 8 WC tested up to: 7.5.1 9 9 Requires PHP: 7.0 … … 116 116 117 117 == Changelog == 118 = 2.0.3 - 2023-03-31 = 119 * Fix - Fixed inputs in wp-admin buged in some systems. 120 118 121 = 2.0.2 - 2023-03-30 = 119 122 * Fix - Fixed inputs in wp-admin because of the escapes.
Note: See TracChangeset
for help on using the changeset viewer.