diff --git a/CHANGELOG.md b/CHANGELOG.md index e69cf9e4..0e402c01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,11 +18,17 @@ This file documents all notable changes made to ITFlow. - Bump TCPDF from 6.8.2 to 6.9.4. - Bump tinyMCE from 7.7.1 to 7.9.0. - Bump phpMailer from 6.9.2 to 6.10.0. +- Bump stripe-php from 16.4.0 to 17.2.1. - Client Portal Add Recurrung Invoices with option to Enable or Disable Auto Pay per recurring Invoice if Stripe is enabled and Client has a payment method. Also when removing saved auto payment methods delete all recurring payments for that client that are Stripe method also added this to the admin settings. +- Limit Stripe to just cards. +- Added Card Details and Payment added to Client Stripe. +- UI / UX updates to guest pay Make use of cards. + ### Fixed - Option SMTP Encrytption None now works as intended. - +- Debug: Table Row counts were not very accurate as they were relying on show table status and not actual row counts. +- Show archived categories properly. ## [25.03.6] diff --git a/includes/get_settings.php b/includes/get_settings.php index d142b709..80e6fa7b 100644 --- a/includes/get_settings.php +++ b/includes/get_settings.php @@ -121,6 +121,8 @@ $config_log_retention = intval($row['config_log_retention']); // Locale $config_currency_format = "US_en"; $config_timezone = $row['config_timezone']; +$config_date_format = "Y-m-d"; +$config_time_format = "H:i"; // Theme $config_theme = $row['config_theme']; diff --git a/tickets_compact.php b/tickets_compact.php index b0a48c88..6a3f8fea 100644 --- a/tickets_compact.php +++ b/tickets_compact.php @@ -7,12 +7,13 @@