Changeset 3398653
- Timestamp:
- 11/19/2025 08:41:41 AM (5 months ago)
- Location:
- scratch-win-giveaways-for-website-facebook/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
socialscratchwin.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
scratch-win-giveaways-for-website-facebook/trunk/readme.txt
r3388651 r3398653 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.8 7 Stable tag: 2.9. 17 Stable tag: 2.9.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 157 157 158 158 == Changelog == 159 = 2.9.2 = 160 Bug fixes and improvements 161 159 162 = 2.9.1 = 160 163 WordPress version 6.8 release compatibility … … 270 273 271 274 == Upgrade Notice == 272 = 2.9. 1=273 WordPress version 6.8 release compatibility 275 = 2.9.2 = 276 Bug fixes and improvements -
scratch-win-giveaways-for-website-facebook/trunk/socialscratchwin.php
r3274219 r3398653 2 2 /** 3 3 * @package Scratch & win giveaways 4 * @version 2.9. 14 * @version 2.9.2 5 5 */ 6 6 /* … … 8 8 Plugin URI: http://appsmav.com 9 9 Description: LAUNCH AWESOME SCRATCH CARD GIVEAWAYS- BOOST LEADS AND CONVERSIONS! BUILD LISTS. GET REFERRAL SALES. 10 Version: 2.9. 110 Version: 2.9.2 11 11 Author: Appsmav 12 12 Author URI: http://appsmav.com … … 35 35 class Appsmav_Scratchwin 36 36 { 37 public static $_plugin_version = '2.9. 1';37 public static $_plugin_version = '2.9.2'; 38 38 public static $_callback_url = 'https://win.appsmav.com/'; 39 39 public static $_api_version = 'api/v1/'; 40 40 protected static $_api_url = 'https://clients.appsmav.com/api_v1.php'; 41 protected static $_c_sdk_url = '//cdn.appsmav.com/win/assets/js/swin-widget-sdk.js?v=2.9. 1';41 protected static $_c_sdk_url = '//cdn.appsmav.com/win/assets/js/swin-widget-sdk.js?v=2.9.2'; 42 42 43 43 /** … … 623 623 // Check if our plugin was updated 624 624 $plugin_path = plugin_basename(__FILE__); 625 if (i n_array($plugin_path, $options['plugins'], true)) {625 if (isset($options['plugins']) && is_array($options['plugins']) && in_array($plugin_path, $options['plugins'], true)) { 626 626 627 627 // Safely get plugin data
Note: See TracChangeset
for help on using the changeset viewer.