Plugin Directory

Changeset 3442099


Ignore:
Timestamp:
01/18/2026 08:50:14 PM (7 weeks ago)
Author:
bgermann
Message:

import version 15.1.1

Location:
cforms2/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cforms2/trunk/cforms.php

    r3441570 r3442099  
    2121 * Description: cformsII is a customizable, flexible and powerful form plugin including simple spam protection, multi-step forms, role manager support and custom themes.
    2222 * Author: Oliver Seidel, Bastian Germann
    23  * Version: 15.1
     23 * Version: 15.1.1
    2424 * Requires at least: 6.9
    2525 * Text Domain: cforms2
     
    2727namespace Cforms2;
    2828
    29 define('CFORMS2_VERSION', '15.1');
     29define('CFORMS2_VERSION', '15.1.1');
    3030
    3131// Debug message handling.
  • cforms2/trunk/lib_options_sub.php

    r3439921 r3442099  
    107107    $enddate = cforms2_get_from_request('cforms_enddate');
    108108    $endtime = cforms2_get_from_request('cforms_endtime');
    109     $timezone = new DateTimeZone(get_option('timezone_string'));
     109    $timezone = new \DateTimeZone(wp_timezone_string());
    110110    if (!empty($startdate)) {
    111111        $dt = DateTime::createFromFormat('Y-m-d', $startdate, $timezone);
  • cforms2/trunk/readme.txt

    r3441570 r3442099  
    8787== Upgrade Notice ==
    8888
    89 = 15.1 =
     89= 15.1.1 =
    9090The 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.
    9191
    9292
    9393== Changelog ==
     94
     95= 15.1.1 =
     96
     97* bugfix:   Use wp_timezone_string over get_option once again
    9498
    9599= 15.1 =
Note: See TracChangeset for help on using the changeset viewer.