Plugin Directory

Changeset 3074703


Ignore:
Timestamp:
04/21/2024 06:34:57 PM (21 months ago)
Author:
CalculatorsCanada.ca
Message:

2.1.0

  • Fixed low level vulnerability
Location:
cc-canadian-mortgage-calculator/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cc-canadian-mortgage-calculator/trunk/cc-mortgage-canada-layout.php

    r2525324 r3074703  
    88<input type="hidden" id="<?php echo $id; ?>-currency" value="<?php echo $currency; ?>">
    99<div class="CCMC-Widget CCMC-Widget-<?php echo $id; ?>">
    10         <div class="CCMC-WidgetTitle CCMC-WidgetTitle-<?php echo $id; ?>"><?php echo $title; ?></div>         
     10        <div class="CCMC-WidgetTitle CCMC-WidgetTitle-<?php echo $id; ?>"><?php echo esc_attr($title); ?></div>       
    1111        <div class="CCMC-rowdiv">
    1212            <div class="CCMC-leftdiv">
     
    7878<style type="text/css">
    7979.CCMC-Widget-<?php echo $id; ?>, .CCMC-WidgetTitle-<?php echo $id; ?> a, .CCMC-WidgetTitle-<?php echo $id; ?> a:visited, .CCMC-WidgetSignature-<?php echo $id; ?> a, .CCMC-WidgetSignature-<?php echo $id; ?> a:visited, .CCMC-WidgetLine-<?php echo $id; ?> {
    80     <?php echo (isset( $border_color) ? "border-color:" . $border_color . ";" : ""); ?>
    81     <?php echo (isset( $bg_color) ? "background-color:" . $bg_color . ";": ""); ?>
    82     <?php echo (isset( $text_color) ? "color:" . $text_color . " !important;": ""); ?>
     80    <?php echo (isset( $border_color) ? "border-color:" . esc_attr($border_color) . ";" : ""); ?>
     81    <?php echo (isset( $bg_color) ? "background-color:" . esc_attr($bg_color) . ";": ""); ?>
     82    <?php echo (isset( $text_color) ? "color:" . esc_attr($text_color) . " !important;": ""); ?>
    8383}
    8484
    8585.CCMC-Widget-<?php echo $id; ?> input[type=text] {
    86     <?php echo (isset( $border_color) ? "border-color:" . $border_color . ";": ""); ?>
    87     <?php echo (isset( $text_color) ? "color:" . $text_color . ";": ""); ?>
    88     <?php echo (isset( $input_bg_color) ? "background-color:" . $input_bg_color . ";": ""); ?>
     86    <?php echo (isset( $border_color) ? "border-color:" . esc_attr($border_color) . ";": ""); ?>
     87    <?php echo (isset( $text_color) ? "color:" . esc_attr($text_color) . ";": ""); ?>
     88    <?php echo (isset( $input_bg_color) ? "background-color:" . esc_attr($input_bg_color) . ";": ""); ?>
    8989}
    9090</style>
  • cc-canadian-mortgage-calculator/trunk/cc-mortgage-canada.php

    r2525333 r3074703  
    55Plugin URI: https://calculatorscanada.ca/mortgage-calculator-wordpress-widget/
    66Description: Simple Canadian Mortgage Calculator
    7 Version: 2.0.6
     7Version: 2.1.0
    88Author: Calculators Canada
    99Author URI: https://calculatorscanada.ca
    1010License: GPL2
    1111
    12 Copyright 2013-2021 CalculatorsCanada.CA ([email protected])
     12Copyright 2013-2024 CalculatorsCanada.CA ([email protected])
    1313This program is free software; you can redistribute it and/or modify
    1414it under the terms of the GNU General Public License as published by
     
    145145// load widget style and javascript files
    146146function cc_mortgage_canada_scripts() {
    147     wp_register_style( 'cc-mortgage-canada', plugins_url('/cc-mortgage-canada.css',__FILE__), NULL, '2.0.5');
     147    wp_register_style( 'cc-mortgage-canada', plugins_url('/cc-mortgage-canada.css',__FILE__), NULL, '2.1.0');
    148148    wp_enqueue_style( 'cc-mortgage-canada' );
    149     wp_enqueue_script( 'cc-mortgage-canada', plugins_url('/cc-mortgage-canada.js',__FILE__), array('jquery'), '2.0.5', true );
     149    wp_enqueue_script( 'cc-mortgage-canada', plugins_url('/cc-mortgage-canada.js',__FILE__), array('jquery'), '2.1.0', true );
    150150}
    151151
  • cc-canadian-mortgage-calculator/trunk/readme.txt

    r2943703 r3074703  
    44Tags: Canada, Canadian mortgage, loan, mortgage, mortgage calculator, interest, calculator, sidebar, widget, plugin, financial, shortcode
    55Requires at least: 3.0
    6 Tested up to: 6.2.2
    7 Stable tag: 2.0.6
     6Tested up to: 6.5.2
     7Stable tag: 2.1.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6060== Changelog ==
    6161
     62= 2.1.0 =
     63* Fixed low level vulnerability
     64
    6265= 2.0.6 =
    6366* Deprecated PHP function fix (create_function() deprecated)
     
    9194
    9295== Upgrade Notice ==
    93 * fixed spelling error
     96
     97= 2.1.0 =
     98* Fixed low level vulnerability. Immediate update advised. 
Note: See TracChangeset for help on using the changeset viewer.