Changeset 2531638
- Timestamp:
- 05/14/2021 10:34:56 AM (5 years ago)
- Location:
- hotscot-events
- Files:
-
- 37 added
- 2 edited
-
tags/1.0.7 (added)
-
tags/1.0.7/css (added)
-
tags/1.0.7/css/jquery-ui-custom.css (added)
-
tags/1.0.7/css/jquery-ui.css (added)
-
tags/1.0.7/hotscot-events.php (added)
-
tags/1.0.7/images (added)
-
tags/1.0.7/images/datepicker (added)
-
tags/1.0.7/images/datepicker/ui-bg_flat_0_aaaaaa_40x100.png (added)
-
tags/1.0.7/images/datepicker/ui-bg_flat_75_ffffff_40x100.png (added)
-
tags/1.0.7/images/datepicker/ui-bg_glass_55_fbf9ee_1x400.png (added)
-
tags/1.0.7/images/datepicker/ui-bg_glass_65_ffffff_1x400.png (added)
-
tags/1.0.7/images/datepicker/ui-bg_glass_75_dadada_1x400.png (added)
-
tags/1.0.7/images/datepicker/ui-bg_glass_75_e6e6e6_1x400.png (added)
-
tags/1.0.7/images/datepicker/ui-bg_glass_95_fef1ec_1x400.png (added)
-
tags/1.0.7/images/datepicker/ui-bg_highlight-soft_75_cccccc_1x100.png (added)
-
tags/1.0.7/images/datepicker/ui-icons_222222_256x240.png (added)
-
tags/1.0.7/images/datepicker/ui-icons_2e83ff_256x240.png (added)
-
tags/1.0.7/images/datepicker/ui-icons_454545_256x240.png (added)
-
tags/1.0.7/images/datepicker/ui-icons_888888_256x240.png (added)
-
tags/1.0.7/images/datepicker/ui-icons_cd0a0a_256x240.png (added)
-
tags/1.0.7/images/ui-bg_flat_0_aaaaaa_40x100.png (added)
-
tags/1.0.7/images/ui-bg_glass_55_fbf9ee_1x400.png (added)
-
tags/1.0.7/images/ui-bg_glass_65_ffffff_1x400.png (added)
-
tags/1.0.7/images/ui-bg_glass_75_dadada_1x400.png (added)
-
tags/1.0.7/images/ui-bg_glass_75_e6e6e6_1x400.png (added)
-
tags/1.0.7/images/ui-bg_glass_75_ffffff_1x400.png (added)
-
tags/1.0.7/images/ui-bg_highlight-soft_75_cccccc_1x100.png (added)
-
tags/1.0.7/images/ui-bg_inset-soft_95_fef1ec_1x100.png (added)
-
tags/1.0.7/images/ui-icons_222222_256x240.png (added)
-
tags/1.0.7/images/ui-icons_2e83ff_256x240.png (added)
-
tags/1.0.7/images/ui-icons_454545_256x240.png (added)
-
tags/1.0.7/images/ui-icons_888888_256x240.png (added)
-
tags/1.0.7/images/ui-icons_cd0a0a_256x240.png (added)
-
tags/1.0.7/js (added)
-
tags/1.0.7/js/general.js (added)
-
tags/1.0.7/menu.png (added)
-
tags/1.0.7/readme.txt (added)
-
trunk/hotscot-events.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hotscot-events/trunk/hotscot-events.php
r1242605 r2531638 3 3 Plugin Name: Hotscot Events 4 4 Description: Allows users to create and display events. 5 Version: 1.0. 65 Version: 1.0.7 6 6 Author: Hotscot 7 7 … … 89 89 global $post_type; 90 90 if($post_type=='ht_event'){ 91 $filter_date = isset( $_GET['filter_date'] ) ? $_GET['filter_date']: $filter_date;91 $filter_date = isset( $_GET['filter_date'] ) ? sanitize_text_field($_GET['filter_date']) : $filter_date; 92 92 $query = "SELECT 93 93 YEAR(sdat.meta_value) as syear, … … 294 294 if(defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return $post_id; 295 295 296 $startDate = isset($_POST['Start_date']) ? $_POST['Start_date']: '';296 $startDate = isset($_POST['Start_date']) ? sanitize_text_field($_POST['Start_date']) : ''; 297 297 if(preg_match("/\d{2}\/\d{2}\/\d{4}/", $startDate)){ 298 298 $startDate = ht_event_date_to_mysql($startDate); … … 302 302 303 303 304 $endDate = isset($_POST['End_date']) ? $_POST['End_date']: '';304 $endDate = isset($_POST['End_date']) ? sanitize_text_field($_POST['End_date']) : ''; 305 305 if(preg_match("/\d{2}\/\d{2}\/\d{4}/", $endDate)){ 306 306 $endDate = ht_event_date_to_mysql($endDate); -
hotscot-events/trunk/readme.txt
r691805 r2531638 5 5 Requires at least: 3.1 6 6 Tested up to: 3.3 7 Stable tag: 1.0. 67 Stable tag: 1.0.7 8 8 9 9 Simple events module... … … 50 50 == Changelog == 51 51 52 = 1.0.7 = 53 * core updates 54 52 55 = 1.0.6 = 53 56 * added: shortcode for showing events as well as helper methods for theme creators
Note: See TracChangeset
for help on using the changeset viewer.