Changeset 3074703
- Timestamp:
- 04/21/2024 06:34:57 PM (21 months ago)
- Location:
- cc-canadian-mortgage-calculator/trunk
- Files:
-
- 3 edited
-
cc-mortgage-canada-layout.php (modified) (2 diffs)
-
cc-mortgage-canada.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cc-canadian-mortgage-calculator/trunk/cc-mortgage-canada-layout.php
r2525324 r3074703 8 8 <input type="hidden" id="<?php echo $id; ?>-currency" value="<?php echo $currency; ?>"> 9 9 <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> 11 11 <div class="CCMC-rowdiv"> 12 12 <div class="CCMC-leftdiv"> … … 78 78 <style type="text/css"> 79 79 .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;": ""); ?> 83 83 } 84 84 85 85 .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) . ";": ""); ?> 89 89 } 90 90 </style> -
cc-canadian-mortgage-calculator/trunk/cc-mortgage-canada.php
r2525333 r3074703 5 5 Plugin URI: https://calculatorscanada.ca/mortgage-calculator-wordpress-widget/ 6 6 Description: Simple Canadian Mortgage Calculator 7 Version: 2. 0.67 Version: 2.1.0 8 8 Author: Calculators Canada 9 9 Author URI: https://calculatorscanada.ca 10 10 License: GPL2 11 11 12 Copyright 2013-202 1CalculatorsCanada.CA ([email protected])12 Copyright 2013-2024 CalculatorsCanada.CA ([email protected]) 13 13 This program is free software; you can redistribute it and/or modify 14 14 it under the terms of the GNU General Public License as published by … … 145 145 // load widget style and javascript files 146 146 function 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'); 148 148 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 ); 150 150 } 151 151 -
cc-canadian-mortgage-calculator/trunk/readme.txt
r2943703 r3074703 4 4 Tags: Canada, Canadian mortgage, loan, mortgage, mortgage calculator, interest, calculator, sidebar, widget, plugin, financial, shortcode 5 5 Requires at least: 3.0 6 Tested up to: 6. 2.27 Stable tag: 2. 0.66 Tested up to: 6.5.2 7 Stable tag: 2.1.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 60 60 == Changelog == 61 61 62 = 2.1.0 = 63 * Fixed low level vulnerability 64 62 65 = 2.0.6 = 63 66 * Deprecated PHP function fix (create_function() deprecated) … … 91 94 92 95 == 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.