Changeset 3442099
- Timestamp:
- 01/18/2026 08:50:14 PM (7 weeks ago)
- Location:
- cforms2/trunk
- Files:
-
- 3 edited
-
cforms.php (modified) (2 diffs)
-
lib_options_sub.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cforms2/trunk/cforms.php
r3441570 r3442099 21 21 * Description: cformsII is a customizable, flexible and powerful form plugin including simple spam protection, multi-step forms, role manager support and custom themes. 22 22 * Author: Oliver Seidel, Bastian Germann 23 * Version: 15.1 23 * Version: 15.1.1 24 24 * Requires at least: 6.9 25 25 * Text Domain: cforms2 … … 27 27 namespace Cforms2; 28 28 29 define('CFORMS2_VERSION', '15.1 ');29 define('CFORMS2_VERSION', '15.1.1'); 30 30 31 31 // Debug message handling. -
cforms2/trunk/lib_options_sub.php
r3439921 r3442099 107 107 $enddate = cforms2_get_from_request('cforms_enddate'); 108 108 $endtime = cforms2_get_from_request('cforms_endtime'); 109 $timezone = new DateTimeZone(get_option('timezone_string'));109 $timezone = new \DateTimeZone(wp_timezone_string()); 110 110 if (!empty($startdate)) { 111 111 $dt = DateTime::createFromFormat('Y-m-d', $startdate, $timezone); -
cforms2/trunk/readme.txt
r3441570 r3442099 87 87 == Upgrade Notice == 88 88 89 = 15.1 =89 = 15.1.1 = 90 90 The tracking database feature and its view are removed with cformsII 15.0+. Your data still exists in the database. Please have a look at CFDB plugin as a replacement. 91 91 92 92 93 93 == Changelog == 94 95 = 15.1.1 = 96 97 * bugfix: Use wp_timezone_string over get_option once again 94 98 95 99 = 15.1 =
Note: See TracChangeset
for help on using the changeset viewer.