Changeset 1103640
- Timestamp:
- 03/02/2015 11:07:08 PM (11 years ago)
- Location:
- vacancy-personal-edition/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
vacancy.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vacancy-personal-edition/trunk/readme.txt
r1101552 r1103640 52 52 == Changelog == 53 53 54 = 1.1.1 = 55 * Bug fix: afternoon reservations where bugged and returning the wrong end time when using the new specified reservation length feature 56 54 57 = 1.1.0 = 55 58 * BIG UPDATE!! … … 79 82 == Upgrade Notice == 80 83 84 = 1.1.1 = 85 * Bug fix: afternoon reservations where bugged and returning the wrong end time when using the new specified reservation length feature 86 81 87 = 1.1.0 = 82 88 * BIG UPDATE!! -
vacancy-personal-edition/trunk/vacancy.php
r1101550 r1103640 4 4 Plugin URI: http://kraftpress.it 5 5 Description: A full featured appointment and reservation booking solution 6 Version: 1.1. 06 Version: 1.1.1 7 7 Author: kraftpress 8 8 Author URI: http://kraftpress.it … … 880 880 $start_time_temp = strtotime($start_time); 881 881 $end_time_temp = strtotime("+".$this->va_settings['end_time_length_hr']." hours", $start_time_temp); 882 $end_time = date(' h:i',strtotime("+".$this->va_settings['end_time_length_min']." minutes", $end_time_temp));882 $end_time = date('H:i',strtotime("+".$this->va_settings['end_time_length_min']." minutes", $end_time_temp)); 883 883 } 884 884 $name = sanitize_text_field($_POST['va_reservation_name']);
Note: See TracChangeset
for help on using the changeset viewer.