Plugin Directory

Changeset 3162347


Ignore:
Timestamp:
10/03/2024 08:14:14 PM (18 months ago)
Author:
loncar
Message:

New version 3.12.2

Location:
easy-appointments/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • easy-appointments/trunk/main.php

    r3148231 r3162347  
    55 * Plugin URI: https://easy-appointments.com/
    66 * Description: Simple and easy to use management system for Appointments and Bookings
    7  * Version: 3.12.1
     7 * Version: 3.12.2
    88 * Requires PHP: 5.3
    99 * Author: Nikola Loncar
  • easy-appointments/trunk/readme.txt

    r3148231 r3162347  
    66Tested up to: 6.6
    77Requires PHP: 5.3
    8 Stable tag: 3.12.1
     8Stable tag: 3.12.2
    99License: GPLv2
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    214214== Changelog ==
    215215
     216= 3.12.2 (2024-10-03)
     217* Fixed bug with ordering of options (location, service, worker)
     218
    216219= 3.12.1 (2024-09-08) =
    217220* Added new option to load default Admin email template to mail editor
  • easy-appointments/trunk/src/dbmodels.php

    r2629519 r3162347  
    227227        }
    228228
    229         $order = implode(',', $tmp);
     229        $order = is_array($tmp) ? implode(',', $tmp) : $tmp;
    230230
    231231        $query = "SELECT *
Note: See TracChangeset for help on using the changeset viewer.