Changeset 3162347
- Timestamp:
- 10/03/2024 08:14:14 PM (18 months ago)
- Location:
- easy-appointments/trunk
- Files:
-
- 3 edited
-
main.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/dbmodels.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
easy-appointments/trunk/main.php
r3148231 r3162347 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. 17 * Version: 3.12.2 8 8 * Requires PHP: 5.3 9 9 * Author: Nikola Loncar -
easy-appointments/trunk/readme.txt
r3148231 r3162347 6 6 Tested up to: 6.6 7 7 Requires PHP: 5.3 8 Stable tag: 3.12. 18 Stable tag: 3.12.2 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.2 (2024-10-03) 217 * Fixed bug with ordering of options (location, service, worker) 218 216 219 = 3.12.1 (2024-09-08) = 217 220 * Added new option to load default Admin email template to mail editor -
easy-appointments/trunk/src/dbmodels.php
r2629519 r3162347 227 227 } 228 228 229 $order = i mplode(',', $tmp);229 $order = is_array($tmp) ? implode(',', $tmp) : $tmp; 230 230 231 231 $query = "SELECT *
Note: See TracChangeset
for help on using the changeset viewer.