Skip to content

Commit

Permalink
fix base64
Browse files Browse the repository at this point in the history
  • Loading branch information
tkc49 committed Sep 17, 2017
1 parent d6c8fc1 commit 0f5dade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/BFIGitHubPluginUploader.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ public function setTransitent( $transient ) {
if ( $doUpdate == 1 ) {


$kintone_to_wp_license_key_attachment = get_option( '_kintone_to_wp_license_key_attachment' );
$license_result_attachment = $this->gumroad_verify_license($kintone_to_wp_license_key_attachment, 'jIewp');
$kintone_to_wp_license_key_attachment = base64_decode(get_option( '_kintone_to_wp_license_key_attachment' ));
$license_result_attachment = $this->gumroad_verify_license($kintone_to_wp_license_key_attachment, GUMROAD_KINTONE_FORM_ATTACHMENTS_SLUG);

$package = '';
if( !is_wp_error($license_result_attachment) ){
Expand Down

0 comments on commit 0f5dade

Please sign in to comment.