Plugin Directory

Changeset 1103640


Ignore:
Timestamp:
03/02/2015 11:07:08 PM (11 years ago)
Author:
a2rocklobster
Message:

Bug fix: afternoon reservations where bugged and returning the wrong end time when using the new specified reservation length feature

Location:
vacancy-personal-edition/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • vacancy-personal-edition/trunk/readme.txt

    r1101552 r1103640  
    5252== Changelog ==
    5353
     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
    5457= 1.1.0 =
    5558* BIG UPDATE!!
     
    7982== Upgrade Notice ==
    8083
     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
    8187= 1.1.0 =
    8288* BIG UPDATE!!
  • vacancy-personal-edition/trunk/vacancy.php

    r1101550 r1103640  
    44    Plugin URI: http://kraftpress.it
    55    Description: A full featured appointment and reservation booking solution
    6     Version: 1.1.0
     6    Version: 1.1.1
    77    Author: kraftpress
    88    Author URI: http://kraftpress.it
     
    880880                $start_time_temp = strtotime($start_time);
    881881                $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));
    883883            }
    884884            $name = sanitize_text_field($_POST['va_reservation_name']);
Note: See TracChangeset for help on using the changeset viewer.