Changeset 3443508
- Timestamp:
- 01/20/2026 07:03:40 PM (2 months ago)
- Location:
- leadfox
- Files:
-
- 4 edited
- 1 copied
-
tags/2.2.4 (copied) (copied from leadfox/trunk)
-
tags/2.2.4/leadfox.php (modified) (4 diffs)
-
tags/2.2.4/readme.txt (modified) (2 diffs)
-
trunk/leadfox.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
leadfox/tags/2.2.4/leadfox.php
r3397626 r3443508 2 2 /** 3 3 * Plugin Name: Leadfox 4 * Version: 2.2. 34 * Version: 2.2.4 5 5 * Author: Leadfox 6 6 * Description: Leadfox converts visitors into ripe leads and paying customers. … … 32 32 define("LF_DELETE", "DELETE"); 33 33 34 // Only process form submissions on our admin page 35 if (!is_admin() || !isset($_GET['page']) || $_GET['page'] !== 'leadfox-menu') { 36 return; 37 } 38 34 39 // Main 35 if (leadfox_post(" submit") !== null) leadfox_update_options();36 if (leadfox_post(" sync") !== null) leadfox_sync_contacts();40 if (leadfox_post("leadfox_submit") !== null) leadfox_update_options(); 41 if (leadfox_post("leadfox_sync") !== null) leadfox_sync_contacts(); 37 42 } 38 43 … … 284 289 285 290 <div> 286 <button type="submit" name=" submit"><?php _e("Submit") ?></button>291 <button type="submit" name="leadfox_submit"><?php _e("Submit") ?></button> 287 292 </div> 288 293 … … 290 295 <label><?php _e("Sync all contacts now") ?></label> 291 296 <div> 292 <button type="submit" name=" sync"><?php _e("Sync") ?></button>297 <button type="submit" name="leadfox_sync"><?php _e("Sync") ?></button> 293 298 </div> 294 299 </form> -
leadfox/tags/2.2.4/readme.txt
r3397626 r3443508 4 4 Requires at least: 3.7 5 5 Tested up to: 6.8.3 6 Stable tag: 2.2. 36 Stable tag: 2.2.4 7 7 License: GPLv2 or later 8 8 … … 39 39 40 40 == Changelog == 41 42 = 2.2.4 = 43 Fixed bug where plugin could interfere with other plugins using common POST variable names. 41 44 42 45 = 2.2.3 = -
leadfox/trunk/leadfox.php
r3397626 r3443508 2 2 /** 3 3 * Plugin Name: Leadfox 4 * Version: 2.2. 34 * Version: 2.2.4 5 5 * Author: Leadfox 6 6 * Description: Leadfox converts visitors into ripe leads and paying customers. … … 32 32 define("LF_DELETE", "DELETE"); 33 33 34 // Only process form submissions on our admin page 35 if (!is_admin() || !isset($_GET['page']) || $_GET['page'] !== 'leadfox-menu') { 36 return; 37 } 38 34 39 // Main 35 if (leadfox_post(" submit") !== null) leadfox_update_options();36 if (leadfox_post(" sync") !== null) leadfox_sync_contacts();40 if (leadfox_post("leadfox_submit") !== null) leadfox_update_options(); 41 if (leadfox_post("leadfox_sync") !== null) leadfox_sync_contacts(); 37 42 } 38 43 … … 284 289 285 290 <div> 286 <button type="submit" name=" submit"><?php _e("Submit") ?></button>291 <button type="submit" name="leadfox_submit"><?php _e("Submit") ?></button> 287 292 </div> 288 293 … … 290 295 <label><?php _e("Sync all contacts now") ?></label> 291 296 <div> 292 <button type="submit" name=" sync"><?php _e("Sync") ?></button>297 <button type="submit" name="leadfox_sync"><?php _e("Sync") ?></button> 293 298 </div> 294 299 </form> -
leadfox/trunk/readme.txt
r3397626 r3443508 4 4 Requires at least: 3.7 5 5 Tested up to: 6.8.3 6 Stable tag: 2.2. 36 Stable tag: 2.2.4 7 7 License: GPLv2 or later 8 8 … … 39 39 40 40 == Changelog == 41 42 = 2.2.4 = 43 Fixed bug where plugin could interfere with other plugins using common POST variable names. 41 44 42 45 = 2.2.3 =
Note: See TracChangeset
for help on using the changeset viewer.