Plugin Directory

Changeset 2677814


Ignore:
Timestamp:
02/13/2022 12:58:27 AM (4 years ago)
Author:
Tanaka Hisao
Message:

1.8.17

Location:
salon-booking/trunk
Files:
3 edited

Legend:

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

    r2376815 r2677814  
    22Contributors: tanaka-hisao
    33Tags: hair salon,salon,appointment,booking,beauty apps,reservation,dental clinic,hospital,mutilingual,clinic,spa,散髪予約,美容院予約,美容室予約,サロン予約,エステ予約,予約システム,予約管理
    4 Requires at least: 4.0
    5 Tested up to: 5.5.1
    6 Stable tag: 1.8.16
     4Requires at least: 5.6
     5Tested up to: 5.6
     6Stable tag: 1.8.17
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7777* Update setting radio/checkbox
    7878* Changed logic about temporary
     79* Fixed bug
     80
     81= 1.8.16 =
    7982* Fixed bug
    8083
  • salon-booking/trunk/salon.php

    r2376815 r2677814  
    1010Domain Path: /languages/
    1111*/
    12 define( 'SL_VERSION', '1.8.16' );
     12define( 'SL_VERSION', '1.8.17' );
    1313define( 'SL_DOMAIN', 'salon-booking' );
    1414define( 'SL_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
  • salon-booking/trunk/src/page/booking_mobile-page.php

    r2376815 r2677814  
    142142        });
    143143
    144         $j(window).load(function(){
     144        $j(window).on('load',function(){
    145145            <?php parent::echoSetItemLabelMobile(); ?>
    146146            <?php
     147                $set_user_inf = "";
     148                if (isset($this->user_inf['user_login']))
     149                {
     150                    $set_user_inf = $this->user_inf['user_login'];
     151                }       
     152
    147153                $res =  parent::echoMobileData($this->reservation_datas,$init_target_day
    148154                        ,$this->first_hour,$this->last_hour
    149                         ,$this->user_inf['user_login'],$this->role);
     155                        ,$set_user_inf,$this->role);
    150156                //現状1件だが複数件でも大丈夫なように
    151157//              foreach($res as $k1 => $d1 ) {
Note: See TracChangeset for help on using the changeset viewer.