Changeset 3180851
- Timestamp:
- 11/03/2024 09:15:15 PM (17 months ago)
- Location:
- easy-appointments/trunk
- Files:
-
- 5 edited
-
js/admin.prod.js (modified) (1 diff)
-
main.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/ajax.php (modified) (2 diffs)
-
src/fields/tablecolumns.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
easy-appointments/trunk/js/admin.prod.js
r3176193 r3180851 499 499 var $li = $btn.closest('li'); 500 500 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 }); 502 502 503 503 this.fields.remove(element); -
easy-appointments/trunk/main.php
r3176193 r3180851 5 5 * Plugin URI: https://easy-appointments.com/ 6 6 * Description: Simple and easy to use management system for Appointments and Bookings 7 * Version: 3.12. 47 * Version: 3.12.5 8 8 * Requires PHP: 5.3 9 9 * Author: Nikola Loncar … … 22 22 * Currently plugin version. 23 23 */ 24 define( 'EASY_APPOINTMENTS_VERSION', '3.12. 4' );24 define( 'EASY_APPOINTMENTS_VERSION', '3.12.5' ); 25 25 26 26 // path for source files -
easy-appointments/trunk/readme.txt
r3176193 r3180851 6 6 Tested up to: 6.6 7 7 Requires PHP: 5.3 8 Stable tag: 3.12. 48 Stable tag: 3.12.5 9 9 License: GPLv2 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 214 214 == Changelog == 215 215 216 = 3.12.5 (2024-11-03) 217 * Fixed compatibility mode and delete action on custom form fields 218 216 219 = 3.12.4 (2024-10-26) 217 220 * Fixed issue with custom form fields that in some cases could not be deleted -
easy-appointments/trunk/src/ajax.php
r3148231 r3180851 855 855 856 856 $data = array(); 857 $local_type = $this->type; 857 858 858 859 switch ($method) { … … 876 877 $this->type = 'DELETE'; 877 878 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; 878 884 } 879 885 -
easy-appointments/trunk/src/fields/tablecolumns.php
r3176193 r3180851 123 123 return; 124 124 } 125 125 126 126 127 foreach ($params as $key => $param) {
Note: See TracChangeset
for help on using the changeset viewer.