Changeset 3014369
- Timestamp:
- 12/26/2023 02:08:09 PM (2 years ago)
- Location:
- woozap/trunk
- Files:
-
- 3 edited
-
gf-controller.php (modified) (2 diffs)
-
init.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woozap/trunk/gf-controller.php
r2852762 r3014369 148 148 <label><?php _e('Server','wpflyleads');?></label> 149 149 <select name="wpflyleads_servers" id="wpflyleads_servers" data-config-field="wpflyleads.servers"> 150 <?php echo wpflyleads_get_servers( $post_data['server']?: '');?>150 <?php echo wpflyleads_get_servers(isset($post_data['server']) ?: '');?> 151 151 </select> 152 152 </div> … … 155 155 <div> 156 156 <label><?php _e('URL','wpflyleads');?></label> 157 <input type="text" name="wpflyleads_webhook_url" id="wpflyleads_webhook_url" data-config-field="wpflyleads.url" value="<?php echo ( $post_data['url']?: '');?>">157 <input type="text" name="wpflyleads_webhook_url" id="wpflyleads_webhook_url" data-config-field="wpflyleads.url" value="<?php echo (isset($post_data['url']) ?: '');?>"> 158 158 </div> 159 159 </td> -
woozap/trunk/init.php
r2855853 r3014369 2 2 /** 3 3 * @package WP AVCL Automation Helper (formerly WPFlyLeads) 4 * @version 3. 34 * @version 3.4 5 5 */ 6 6 /* … … 9 9 Author: Ankur Vishwakarma & Ankit Vishwakarma 10 10 Author URI: https://ankurvishwakarma.com 11 Version: 3. 311 Version: 3.4 12 12 Author Email : ankurvishwakarma54@yahoo.com 13 13 Domain : wpflyleads … … 74 74 75 75 function __construct(){ 76 $this->wpflyleads_version='3. 3';76 $this->wpflyleads_version='3.4'; 77 77 $this->wpflyleads_urlpath=plugin_dir_url( __FILE__ ); 78 78 $this->wpflyleads_dirpath=plugin_dir_path(__FILE__); -
woozap/trunk/readme.txt
r2855855 r3014369 5 5 Requires at least: 5.5 6 6 Requires PHP: 5.5 7 Tested up to: 6. 1.18 Stable tag: 3. 37 Tested up to: 6.4 8 Stable tag: 3.4 9 9 License: GPLv2 or later 10 10 … … 20 20 To thousands of other platforms. 21 21 22 == Latest Version 3.3 ==23 1. Supports Pabbly integration with WooCommerce, Gravity Forms and Contact Form 724 22 25 23 == Notice == … … 116 114 * Security Updates 117 115 * UI Improvements 116 117 = 3.3 = 118 * Bug Fixes 119 * Security Updates
Note: See TracChangeset
for help on using the changeset viewer.