Changeset 3243992
- Timestamp:
- 02/20/2025 03:32:14 PM (13 months ago)
- Location:
- pie-calendar/trunk
- Files:
-
- 5 edited
-
.DS_Store (modified) (previous)
-
includes/shortcode.php (modified) (2 diffs)
-
languages/piecal.pot (modified) (2 diffs)
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pie-calendar/trunk/includes/shortcode.php
r3236286 r3243992 194 194 direction: "<?php echo is_rtl() ? 'rtl' : 'ltr'; ?>", 195 195 contentHeight: "auto", 196 locale: "<?php echo $locale; ?>",196 locale: "<?php echo esc_attr( $locale ); ?>", 197 197 eventTimeFormat: <?php echo json_encode($localeDateStringFormat); ?>, 198 198 dayHeaderFormat: { weekday: 'long' }, … … 428 428 buttonText: {}, 429 429 showPopover: false, 430 locale: "<?php echo $locale; ?>",430 locale: "<?php echo esc_attr( $locale ); ?>", 431 431 localeDateStringFormat: <?php echo json_encode( $localeDateStringFormat ); ?>, 432 432 allDayLocaleDateStringFormat: <?php echo json_encode( $allDayLocaleDateStringFormat ); ?>, -
pie-calendar/trunk/languages/piecal.pot
r3236286 r3243992 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Pie Calendar 1.2. 5\n"5 "Project-Id-Version: Pie Calendar 1.2.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pie-calendar\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-02- 05T14:21:51+00:00\n"12 "POT-Creation-Date: 2025-02-20T14:50:22+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.8.1\n" -
pie-calendar/trunk/plugin.php
r3236286 r3243992 10 10 * Plugin URI: https://piecalendar.com 11 11 * Description: Turn any post type into a calendar event and display it on a calendar. 12 * Version: 1.2. 512 * Version: 1.2.6 13 13 * Author: Elijah Mills & Jonathan Jernigan 14 14 * Author URI: https://piecalendar.com/about … … 26 26 } 27 27 28 define( 'PIECAL_VERSION', '1.2. 5' );28 define( 'PIECAL_VERSION', '1.2.6' ); 29 29 define( 'PIECAL_PATH', plugin_dir_url( __FILE__ ) ); 30 30 define( 'PIECAL_DIR', plugin_dir_path( __FILE__ ) ); -
pie-calendar/trunk/readme.txt
r3236286 r3243992 4 4 Donate link: https://piecalendar.com 5 5 Requires at least: 5.9 6 Tested up to: 6.7. 16 Tested up to: 6.7.2 7 7 Requires PHP: 7.4 8 Stable tag: 1.2. 58 Stable tag: 1.2.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 92 92 93 93 == Changelog == 94 95 = 1.2.6 = 96 * Security Fix: Prevented execution of JavaScript in the locale attribute of the [piecal] shortcode. 94 97 95 98 = 1.2.5 =
Note: See TracChangeset
for help on using the changeset viewer.