Plugin Directory

Changeset 3180851


Ignore:
Timestamp:
11/03/2024 09:15:15 PM (17 months ago)
Author:
loncar
Message:

New version 3.12.5

Location:
easy-appointments/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • easy-appointments/trunk/js/admin.prod.js

    r3176193 r3180851  
    499499            var $li = $btn.closest('li');
    500500            var name = _.unescape('' + $li.data('name'));
    501             var element = !!id ? this.fields.findWhere({id: id}) : this.fields.findWhere({ label:name });
     501            var element = !!id ? this.fields.findWhere({id: '' + id}) : this.fields.findWhere({ label:name });
    502502
    503503            this.fields.remove(element);
  • easy-appointments/trunk/main.php

    r3176193 r3180851  
    55 * Plugin URI: https://easy-appointments.com/
    66 * Description: Simple and easy to use management system for Appointments and Bookings
    7  * Version: 3.12.4
     7 * Version: 3.12.5
    88 * Requires PHP: 5.3
    99 * Author: Nikola Loncar
     
    2222 * Currently plugin version.
    2323 */
    24 define( 'EASY_APPOINTMENTS_VERSION', '3.12.4' );
     24define( 'EASY_APPOINTMENTS_VERSION', '3.12.5' );
    2525
    2626// path for source files
  • easy-appointments/trunk/readme.txt

    r3176193 r3180851  
    66Tested up to: 6.6
    77Requires PHP: 5.3
    8 Stable tag: 3.12.4
     8Stable tag: 3.12.5
    99License: GPLv2
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    214214== Changelog ==
    215215
     216= 3.12.5 (2024-11-03)
     217* Fixed compatibility mode and delete action on custom form fields
     218
    216219= 3.12.4 (2024-10-26)
    217220* Fixed issue with custom form fields that in some cases could not be deleted
  • easy-appointments/trunk/src/ajax.php

    r3148231 r3180851  
    855855
    856856        $data = array();
     857        $local_type = $this->type;
    857858
    858859        switch ($method) {
     
    876877                $this->type = 'DELETE';
    877878                break;
     879        }
     880
     881        // sometimes this method is called more then once and in compatibility mode it is removing type value
     882        if ($local_type) {
     883            $this->type = $local_type;
    878884        }
    879885
  • easy-appointments/trunk/src/fields/tablecolumns.php

    r3176193 r3180851  
    123123            return;
    124124        }
     125
    125126
    126127        foreach ($params as $key => $param) {
Note: See TracChangeset for help on using the changeset viewer.