Plugin Directory

Changeset 3040355


Ignore:
Timestamp:
02/23/2024 05:28:07 PM (2 years ago)
Author:
bompus
Message:

3.7.1

Location:
wp-customer-reviews/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-customer-reviews/trunk/changelog.txt

    r2988543 r3040355  
     1= 3.7.1 =
     2* 02/23/2024
     3* [Security] Security / hardening updates
     4
    15= 3.7.0 =
    26* 11/03/2023
  • wp-customer-reviews/trunk/license.txt

    r2965656 r3040355  
    1 Copyright (c) 2023 Aaron Queen
     1Copyright (c) 2024 Aaron Queen
    22
    33Permission is hereby granted, free of charge, to any person obtaining
  • wp-customer-reviews/trunk/readme.txt

    r2988543 r3040355  
    55Requires at least: 3.0.0
    66Tested up to: 6.4
    7 Stable tag: 3.7.0
     7Stable tag: 3.7.1
    88License: MIT
    99License URI: http://opensource.org/licenses/MIT
     
    6363== Changelog ==
    6464
     65= 3.7.1 =
     66* 02/23/2024
     67* [Security] Security / hardening updates
     68
    6569= 3.7.0 =
    6670* 11/03/2023
  • wp-customer-reviews/trunk/wp-customer-reviews-3.php

    r2988543 r3040355  
    44 * Plugin URI: https://wordpress.org/plugins/wp-customer-reviews/
    55 * Description: Allows your visitors to leave business / product reviews. Testimonials are in Microdata / Microformat and may display star ratings in search results.
    6  * Version: 3.7.0
     6 * Version: 3.7.1
    77 * Author: Aaron Queen
    88 * Author URI: https://wordpress.org/plugins/wp-customer-reviews/
     
    1010 * License: MIT
    1111 *
    12  * Copyright (c) 2023 Aaron Queen
     12 * Copyright (c) 2024 Aaron Queen
    1313 *
    1414 * Permission is hereby granted, free of charge, to any person obtaining a copy
     
    485485        foreach ($meta as $key => $valArr) {
    486486            if ($key === "") { continue; }
    487             $out[$key] = $valArr[0];
     487
     488            // escape output for both meta tags and html output
     489            if ($key === "wpcr3_business_url") {
     490                $out[$key] = esc_url($valArr[0]);
     491            } else {
     492                $out[$key] = esc_attr($valArr[0]);
     493            }
    488494        }
    489495       
Note: See TracChangeset for help on using the changeset viewer.