Changeset 1725925
- Timestamp:
- 09/07/2017 06:19:37 AM (9 years ago)
- Location:
- sr-partner/trunk
- Files:
-
- 4 edited
-
admin/class-sr-partner-admin.php (modified) (1 diff)
-
includes/class-sr-partner-helper.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
sr-partner.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sr-partner/trunk/admin/class-sr-partner-admin.php
r1717421 r1725925 830 830 { 831 831 if (isset($_POST['sr-partner-form-activate-token']) && !empty($_POST['sr-partner-form-activate-token'])) { 832 $token = $_POST['sr-partner-form-activate-token'];832 $token = trim($_POST['sr-partner-form-activate-token']); 833 833 $temp = explode('/', $token); 834 834 -
sr-partner/trunk/includes/class-sr-partner-helper.php
r1717421 r1725925 88 88 public function read_key() 89 89 { 90 if ( file_exists(plugin_dir_path( dirname( __FILE__ ) ).'sr-partner.json')) {91 $file = json_decode(file_get_contents(plugin_dir_path( dirname( __FILE__ ) ).'sr-partner.json'), TRUE);92 if ( isset($file['token']) ) {93 $option = update_option(SR_PARTNER_GEN_KEY, $file['token']);90 if (file_exists(plugin_dir_path( dirname( __FILE__ )).'sr-partner.json')) { 91 $file = json_decode(file_get_contents(plugin_dir_path(dirname( __FILE__ )).'sr-partner.json'), true); 92 if (isset($file['token'])) { 93 $option = update_option(SR_PARTNER_GEN_KEY, trim($file['token'])); 94 94 } 95 95 } -
sr-partner/trunk/readme.txt
r1717421 r1725925 4 4 Requires at least: 4.6 5 5 Tested up to: 4.8.1 6 Stable tag: 1.1. 36 Stable tag: 1.1.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 49 49 == Changelog == 50 50 51 = 1.1.4 = 52 53 * Release date: September 07, 2017 54 55 **Bug fixes** 56 * Removed any additional spaces when saving the token. 57 51 58 = 1.1.3 = 52 59 -
sr-partner/trunk/sr-partner.php
r1717421 r1725925 17 17 * Plugin URI: https://www.seoreseller.com/ 18 18 * Description: SEOReseller's suite of tools for building, managing, and growing your digital marketing agency. 19 * Version: 1.1. 319 * Version: 1.1.4 20 20 * Author: SEOReseller Team 21 21 * Author URI: https://www.seoreseller.com/ … … 43 43 const SR_PARTNER_PLUGIN_NAME = 'sr-partner'; 44 44 45 const SR_PARTNER_VERSION = '1.1. 3';45 const SR_PARTNER_VERSION = '1.1.4'; 46 46 const SR_PARTNER_DEBUG = false; 47 47
Note: See TracChangeset
for help on using the changeset viewer.