Changeset 2377800
- Timestamp:
- 09/09/2020 09:39:43 AM (6 years ago)
- Location:
- contact-form-7-browsing-history
- Files:
-
- 4 added
- 2 edited
-
tags/2.0.0 (added)
-
tags/2.0.0/bt-wpcf7-extra-body.php (added)
-
tags/2.0.0/readme.txt (added)
-
tags/2.0.0/screenshot-1.png (added)
-
trunk/bt-wpcf7-extra-body.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
contact-form-7-browsing-history/trunk/bt-wpcf7-extra-body.php
r2218071 r2377800 5 5 * Author: biztechc 6 6 * Author URI: https://www.appjetty.com/ 7 * Version: 2.0.07 * Version: 3.0.0 8 8 */ 9 if (!session_id()) { 9 10 /*if (!session_id()) { 10 11 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 */ 18 add_action('init', 'bt_start_session', 1); 19 function bt_start_session() { 20 if(!session_id()) { 21 session_start(); 11 22 } 23 } 24 12 25 add_action('wp_footer', 'bt_add_histories'); // add in footer 13 26 -
contact-form-7-browsing-history/trunk/readme.txt
r2218071 r2377800 3 3 Tags: Contact form 7 browsing history,visitor page history,page history 4 4 Requires at least: 3.6.1 5 Tested up to: 5. 36 Stable tag: 2.0.05 Tested up to: 5.5 6 Stable tag: 3.0.0 7 7 License: GPLv2 or later 8 8 … … 30 30 = 2.0.0 = 31 31 * 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.