Plugin Directory

Changeset 2377800


Ignore:
Timestamp:
09/09/2020 09:39:43 AM (6 years ago)
Author:
biztechc
Message:

compatibility with WP 5.5

Location:
contact-form-7-browsing-history
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • contact-form-7-browsing-history/trunk/bt-wpcf7-extra-body.php

    r2218071 r2377800  
    55 * Author: biztechc
    66 * Author URI: https://www.appjetty.com/
    7  * Version: 2.0.0
     7 * Version: 3.0.0
    88 */
    9 if (!session_id()) {
     9
     10/*if (!session_id()) {
    1011    add_action('init', 'session_start');    // start session
     12}*/
     13
     14/**
     15 * Added by Dhruvi-biztech on 07/11/2019.
     16 * To enable session_start beacuse above code for session_start not worked.
     17 */
     18add_action('init', 'bt_start_session', 1);
     19function bt_start_session() {
     20    if(!session_id()) {
     21        session_start();
    1122}
     23}
     24
    1225add_action('wp_footer', 'bt_add_histories');    // add in footer
    1326
  • contact-form-7-browsing-history/trunk/readme.txt

    r2218071 r2377800  
    33Tags: Contact form 7 browsing history,visitor page history,page history
    44Requires at least: 3.6.1
    5 Tested up to: 5.3
    6 Stable tag: 2.0.0
     5Tested up to: 5.5
     6Stable tag: 3.0.0
    77License: GPLv2 or later
    88
     
    3030= 2.0.0 =
    3131* Compatible with WordPress version 5.3
     32= 3.0.0 =
     33* Compatible with WordPress version 5.5
Note: See TracChangeset for help on using the changeset viewer.