Plugin Directory

Changeset 2891064


Ignore:
Timestamp:
03/31/2023 09:20:54 AM (3 years ago)
Author:
rafacarvalhido
Message:

More wp-admin escaping problems

Location:
racar-clear-cart-for-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • racar-clear-cart-for-woocommerce/trunk/includes/admin/class-rccwoo_Admin_Options.php

    r2890821 r2891064  
    412412                $val = $this->options['rccwoo_background'];
    413413            }
    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 . '" />';
    415415            echo wp_kses( $html , $allowed_html );
    416416        }
     
    422422                $val = $this->options['rccwoo_background_hover_color'];
    423423            }
    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 . '" />';
    425425            echo wp_kses( $html , $allowed_html );
    426426        }
     
    432432                $val = $this->options['rccwoo_text_color'];
    433433            }
    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 . '" />';
    435435            echo wp_kses( $html , $allowed_html );
    436436        }
     
    442442                $val = $this->options['rccwoo_hover_text_color'];
    443443            }
    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 . '" />';
    445445            echo wp_kses( $html , $allowed_html );
    446446        }
  • racar-clear-cart-for-woocommerce/trunk/racar-clear-cart-for-woocommerce.php

    r2890821 r2891064  
    44 * Plugin URI:  https://github.com/rafacarvalhido/racar-clear-cart-woo
    55 * Description: This plugin adds a convenient button to empty the shopping cart. Clear the entire cart with one click.
    6  * Version:     2.0.2
     6 * Version:     2.0.3
    77 * Author:      Rafa Carvalhido
    88 * Author URI:  https://programawordpress.pro.br/blog/contato/rafa-carvalhido/
     
    5656    $rccwoo_basename = plugin_basename(__FILE__);//racar-clear-cart-for-woocommerce/racar-clear-cart-for-woocommerce.php
    5757
    58     $rccwoo_VERSION = '2.0.2';
     58    $rccwoo_VERSION = '2.0.3';
    5959   
    6060    $rccwoo_NOME_STYLESHEET = 'rccwoo-stylesheet';
  • racar-clear-cart-for-woocommerce/trunk/readme.txt

    r2890821 r2891064  
    55Requires at least: 4.9.8
    66Tested up to: 6.1.1
    7 Stable tag: 2.0.2
     7Stable tag: 2.0.3
    88WC tested up to: 7.5.1
    99Requires PHP: 7.0
     
    116116
    117117== Changelog ==
     118= 2.0.3 - 2023-03-31 =
     119* Fix - Fixed inputs in wp-admin buged in some systems.
     120
    118121= 2.0.2 - 2023-03-30 =
    119122* Fix - Fixed inputs in wp-admin because of the escapes.
Note: See TracChangeset for help on using the changeset viewer.