Changeset 3040355
- Timestamp:
- 02/23/2024 05:28:07 PM (2 years ago)
- Location:
- wp-customer-reviews/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
license.txt (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-customer-reviews-3.php (modified) (3 diffs)
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 1 5 = 3.7.0 = 2 6 * 11/03/2023 -
wp-customer-reviews/trunk/license.txt
r2965656 r3040355 1 Copyright (c) 202 3Aaron Queen1 Copyright (c) 2024 Aaron Queen 2 2 3 3 Permission is hereby granted, free of charge, to any person obtaining -
wp-customer-reviews/trunk/readme.txt
r2988543 r3040355 5 5 Requires at least: 3.0.0 6 6 Tested up to: 6.4 7 Stable tag: 3.7. 07 Stable tag: 3.7.1 8 8 License: MIT 9 9 License URI: http://opensource.org/licenses/MIT … … 63 63 == Changelog == 64 64 65 = 3.7.1 = 66 * 02/23/2024 67 * [Security] Security / hardening updates 68 65 69 = 3.7.0 = 66 70 * 11/03/2023 -
wp-customer-reviews/trunk/wp-customer-reviews-3.php
r2988543 r3040355 4 4 * Plugin URI: https://wordpress.org/plugins/wp-customer-reviews/ 5 5 * 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. 06 * Version: 3.7.1 7 7 * Author: Aaron Queen 8 8 * Author URI: https://wordpress.org/plugins/wp-customer-reviews/ … … 10 10 * License: MIT 11 11 * 12 * Copyright (c) 202 3Aaron Queen12 * Copyright (c) 2024 Aaron Queen 13 13 * 14 14 * Permission is hereby granted, free of charge, to any person obtaining a copy … … 485 485 foreach ($meta as $key => $valArr) { 486 486 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 } 488 494 } 489 495
Note: See TracChangeset
for help on using the changeset viewer.