Changeset 566874
- Timestamp:
- 07/03/2012 12:18:12 PM (13 years ago)
- Location:
- hotscot-events
- Files:
-
- 37 added
- 2 edited
-
tags/1.0.4 (added)
-
tags/1.0.4/css (added)
-
tags/1.0.4/css/jquery-ui-custom.css (added)
-
tags/1.0.4/css/jquery-ui.css (added)
-
tags/1.0.4/hotscot-events.php (added)
-
tags/1.0.4/images (added)
-
tags/1.0.4/images/datepicker (added)
-
tags/1.0.4/images/datepicker/ui-bg_flat_0_aaaaaa_40x100.png (added)
-
tags/1.0.4/images/datepicker/ui-bg_flat_75_ffffff_40x100.png (added)
-
tags/1.0.4/images/datepicker/ui-bg_glass_55_fbf9ee_1x400.png (added)
-
tags/1.0.4/images/datepicker/ui-bg_glass_65_ffffff_1x400.png (added)
-
tags/1.0.4/images/datepicker/ui-bg_glass_75_dadada_1x400.png (added)
-
tags/1.0.4/images/datepicker/ui-bg_glass_75_e6e6e6_1x400.png (added)
-
tags/1.0.4/images/datepicker/ui-bg_glass_95_fef1ec_1x400.png (added)
-
tags/1.0.4/images/datepicker/ui-bg_highlight-soft_75_cccccc_1x100.png (added)
-
tags/1.0.4/images/datepicker/ui-icons_222222_256x240.png (added)
-
tags/1.0.4/images/datepicker/ui-icons_2e83ff_256x240.png (added)
-
tags/1.0.4/images/datepicker/ui-icons_454545_256x240.png (added)
-
tags/1.0.4/images/datepicker/ui-icons_888888_256x240.png (added)
-
tags/1.0.4/images/datepicker/ui-icons_cd0a0a_256x240.png (added)
-
tags/1.0.4/images/ui-bg_flat_0_aaaaaa_40x100.png (added)
-
tags/1.0.4/images/ui-bg_glass_55_fbf9ee_1x400.png (added)
-
tags/1.0.4/images/ui-bg_glass_65_ffffff_1x400.png (added)
-
tags/1.0.4/images/ui-bg_glass_75_dadada_1x400.png (added)
-
tags/1.0.4/images/ui-bg_glass_75_e6e6e6_1x400.png (added)
-
tags/1.0.4/images/ui-bg_glass_75_ffffff_1x400.png (added)
-
tags/1.0.4/images/ui-bg_highlight-soft_75_cccccc_1x100.png (added)
-
tags/1.0.4/images/ui-bg_inset-soft_95_fef1ec_1x100.png (added)
-
tags/1.0.4/images/ui-icons_222222_256x240.png (added)
-
tags/1.0.4/images/ui-icons_2e83ff_256x240.png (added)
-
tags/1.0.4/images/ui-icons_454545_256x240.png (added)
-
tags/1.0.4/images/ui-icons_888888_256x240.png (added)
-
tags/1.0.4/images/ui-icons_cd0a0a_256x240.png (added)
-
tags/1.0.4/js (added)
-
tags/1.0.4/js/general.js (added)
-
tags/1.0.4/menu.png (added)
-
tags/1.0.4/readme.txt (added)
-
trunk/hotscot-events.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hotscot-events/trunk/hotscot-events.php
r536674 r566874 3 3 Plugin Name: Hotscot Events 4 4 Description: Allows users to create and display events. 5 Version: 1.0. 35 Version: 1.0.4 6 6 Author: Hotscot 7 7 … … 291 291 if(defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return $post_id; 292 292 293 $startDate = $_POST['Start_date'];293 $startDate = isset($_POST['Start_date']) ? $_POST['Start_date'] : ''; 294 294 if(preg_match("/\d{2}\/\d{2}\/\d{4}/", $startDate)){ 295 295 $startDate = ht_event_date_to_mysql($startDate); … … 299 299 300 300 301 $endDate = $_POST['End_date'];301 $endDate = isset($_POST['End_date']) ? $_POST['End_date'] : ''; 302 302 if(preg_match("/\d{2}\/\d{2}\/\d{4}/", $endDate)){ 303 303 $endDate = ht_event_date_to_mysql($endDate); -
hotscot-events/trunk/readme.txt
r536674 r566874 5 5 Requires at least: 3.1 6 6 Tested up to: 3.3 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 9 9 Simple events module... … … 26 26 1.0.2 - Custom Filter on admin page 27 27 1.0.3 - sorted some issues 28 1.0.4 - fixed some warnings 28 29 29 30 == Upgrade Notice ==
Note: See TracChangeset
for help on using the changeset viewer.