Changeset 2351313
- Timestamp:
- 08/03/2020 05:17:49 AM (6 years ago)
- Location:
- traderunner/trunk
- Files:
-
- 4 edited
-
connect.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
traderunner.php (modified) (2 diffs)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
traderunner/trunk/connect.php
r2185323 r2351313 2 2 /** 3 3 * Connect page details. 4 * Version: 3. 64 * Version: 3.7 5 5 * Author: Trade Me 6 6 * Author URI: https://trademe.co.nz -
traderunner/trunk/readme.txt
r2202954 r2351313 5 5 Contributors: tmtraderunner, citybeachsoftware 6 6 Requires at least: 4.1.1 7 Tested up to: 5. 37 Tested up to: 5.4 8 8 Stable tag: trunk 9 9 Requires PHP: 5.6 … … 59 59 == Changelog == 60 60 61 = 3.7 = 62 * Extended version support. 63 61 64 = 3.6 = 62 65 * Minor interface changes. -
traderunner/trunk/traderunner.php
r2185323 r2351313 3 3 * Plugin Name: traderunner 4 4 * Description: Connect your WooCommerce to Trade Me 5 * Version: 3. 65 * Version: 3.7 6 6 * Author: Trade Me 7 7 * Author URI: https://trademe.co.nz … … 10 10 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 11 11 12 if ( in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins'))) ||13 in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', array_keys(get_site_option('active_sitewide_plugins'))))) {12 if ((get_option('active_plugins') && in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) || 13 (get_site_option('active_sitewide_plugins') && in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', array_keys(get_site_option('active_sitewide_plugins')))))) { 14 14 15 15 if (!class_exists('TradeRunnerAdmin')) { -
traderunner/trunk/uninstall.php
r2185323 r2351313 2 2 /** 3 3 * Runs on Uninstall. 4 * Version: 3. 64 * Version: 3.7 5 5 * Author: Trade Me 6 6 * Author URI: https://trademe.co.nz
Note: See TracChangeset
for help on using the changeset viewer.