Changeset 3182663
- Timestamp:
- 11/05/2024 09:39:30 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/templates/admin.tpl.php (modified) (1 diff)
-
src/templates/appointments.tpl.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
easy-appointments/trunk/js/admin.prod.js
r3180851 r3182663 658 658 $lis.each(function(index, el) { 659 659 var name = jQuery(el).data('name'); 660 var element = obj.fields.findWhere({label:name}); 660 var element = obj.fields.findWhere({ label: name }); 661 662 if (!element) { 663 var modelId = jQuery(el).data('id'); 664 element = obj.fields.findWhere({ id: modelId }); 665 } 661 666 662 667 element.set('position', count++); -
easy-appointments/trunk/main.php
r3180851 r3182663 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. 57 * Version: 3.12.6 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. 5' );24 define( 'EASY_APPOINTMENTS_VERSION', '3.12.6' ); 25 25 26 26 // path for source files -
easy-appointments/trunk/readme.txt
r3180851 r3182663 6 6 Tested up to: 6.6 7 7 Requires PHP: 5.3 8 Stable tag: 3.12. 58 Stable tag: 3.12.6 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.6 (2024-11-05) 217 * Fixed issue with empty list on appointments page 218 * Fixed issue with order of custom fields 219 216 220 = 3.12.5 (2024-11-03) 217 221 * Fixed compatibility mode and delete action on custom form fields -
easy-appointments/trunk/src/templates/admin.tpl.php
r3176193 r3182663 930 930 <script type="text/template" id="ea-tpl-single-advance-redirect"> 931 931 <li> 932 <span class="bulk-value"><%- _.findWhere(locations, {id:row.location}) .name %></span>933 <span class="bulk-value"><%- _.findWhere(services, {id:row.service}) .name %></span>934 <span class="bulk-value"><%- _.findWhere(workers, {id:row.worker}) .name s%></span>932 <span class="bulk-value"><%- _.findWhere(locations, {id:row.location})?.name %></span> 933 <span class="bulk-value"><%- _.findWhere(services, {id:row.service})?.name %></span> 934 <span class="bulk-value"><%- _.findWhere(workers, {id:row.worker})?.name s%></span> 935 935 <span style="display: inline-block;"><button class="button bulk-connection-remove">Remove</button></span> 936 936 </li> -
easy-appointments/trunk/src/templates/appointments.tpl.php
r2839111 r3182663 118 118 <td colspan="2" class="post-title page-title column-title"> 119 119 <strong>#<%- row.id %></strong> 120 <strong><%- _.findWhere(cache.Locations, {id:row.location}) .name %></strong>121 <strong><%- _.findWhere(cache.Services, {id:row.service}) .name %></strong>122 <strong><%- _.findWhere(cache.Workers, {id:row.worker}) .name %></strong>120 <strong><%- _.findWhere(cache.Locations, {id:row.location})?.name %></strong> 121 <strong><%- _.findWhere(cache.Services, {id:row.service})?.name %></strong> 122 <strong><%- _.findWhere(cache.Workers, {id:row.worker})?.name %></strong> 123 123 </td> 124 124 <td colspan="2"> 125 <% _.each(cache.MetaFields, function(item,key,list) { %>125 <% _.each(cache.MetaFields, function(item,key,list) { %> 126 126 <% if (row[item.slug] !== "undefined" && item.type !== 'TEXTAREA') { %> 127 127 <strong><%- row[item.slug] %></strong><br>
Note: See TracChangeset
for help on using the changeset viewer.