Plugin Directory

Changeset 1930330


Ignore:
Timestamp:
08/25/2018 11:10:56 PM (8 years ago)
Author:
Tanaka Hisao
Message:

1.8.12

Location:
salon-booking/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • salon-booking/trunk/readme.txt

    r1930029 r1930330  
    44Requires at least: 4.0
    55Tested up to: 4.9.7
    6 Stable tag: 1.8.11
     6Stable tag: 1.8.12
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7474
    7575== Changelog ==
     76= 1.8.12 =
     77* Fixed show warning message by "count" function(PHP7.2.X)
     78
    7679= 1.8.11 =
    7780* Fixed display staff members
  • salon-booking/trunk/salon.php

    r1930029 r1930330  
    44Plugin URI: http://salon.mallory.jp
    55Description: Salon Booking enables the reservation to one-on-one business between a client and a staff member.
    6 Version: 1.8.10
     6Version: 1.8.12
    77Author: tanaka-hisao
    88Author URI: http://salon.mallory.jp
     
    1010Domain Path: /languages/
    1111*/
    12 define( 'SL_VERSION', '1.8.11' );
     12define( 'SL_VERSION', '1.8.12' );
    1313define( 'SL_DOMAIN', 'salon-booking' );
    1414define( 'SL_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
     
    16541654                $sp_dates = unserialize($d1['sp_dates']);
    16551655                //$k2 = YYYY
    1656                 if (count($sp_dates) > 0  && is_array($sp_dates) ) {
     1656                if (is_array($sp_dates)  && count($sp_dates) > 0 ) {
    16571657                    foreach ($sp_dates as $k2 => $d2) {
    16581658                        //$k3 = YYYYMMDD
  • salon-booking/trunk/src/data/booking-data.php

    r1727804 r1930330  
    6161        //24時越は現状未対応
    6262        if (2400 < +$branch_datas["close_time"])  {
    63             return null;
     63            return array();
    6464        }
    6565        //出退勤連動も未対応
    6666        if ($this->getConfigData('SALON_CONFIG_STAFF_HOLIDAY_SET') == Salon_Config::SET_STAFF_REVERSE) {
    67             return null;
     67            return array();
    6868        }
    6969        global $wpdb;
Note: See TracChangeset for help on using the changeset viewer.