|
@@ -43,7 +43,7 @@ discard block |
|
|
block discarded – undo |
|
43
|
43
|
$this->version = $_api_data['version']; |
|
44
|
44
|
$this->wp_override = isset( $_api_data['wp_override'] ) ? (bool) $_api_data['wp_override'] : false; |
|
45
|
45
|
|
|
46
|
|
- $frm_edd_plugin_data[ $this->slug ] = $this->api_data; |
|
|
46
|
+ $frm_edd_plugin_data[$this->slug] = $this->api_data; |
|
47
|
47
|
|
|
48
|
48
|
// Set up hooks. |
|
49
|
49
|
$this->init(); |
|
@@ -83,7 +83,7 @@ discard block |
|
|
block discarded – undo |
|
83
|
83
|
$_transient_data = new stdClass; |
|
84
|
84
|
} |
|
85
|
85
|
|
|
86
|
|
- if ( ! empty( $_transient_data->response ) && ! empty( $_transient_data->response[ $this->name ] ) && false === $this->wp_override ) { |
|
|
86
|
+ if ( ! empty( $_transient_data->response ) && ! empty( $_transient_data->response[$this->name] ) && false === $this->wp_override ) { |
|
87
|
87
|
return $_transient_data; |
|
88
|
88
|
} |
|
89
|
89
|
|
|
@@ -97,12 +97,12 @@ discard block |
|
|
block discarded – undo |
|
97
|
97
|
$version_info->plugin = $this->name; |
|
98
|
98
|
} |
|
99
|
99
|
|
|
100
|
|
- $_transient_data->response[ $this->name ] = $version_info; |
|
|
100
|
+ $_transient_data->response[$this->name] = $version_info; |
|
101
|
101
|
|
|
102
|
102
|
} |
|
103
|
103
|
|
|
104
|
104
|
$_transient_data->last_checked = time(); |
|
105
|
|
- $_transient_data->checked[ $this->name ] = $this->version; |
|
|
105
|
+ $_transient_data->checked[$this->name] = $this->version; |
|
106
|
106
|
|
|
107
|
107
|
} |
|
108
|
108
|
|
|
@@ -245,7 +245,7 @@ discard block |
|
|
block discarded – undo |
|
245
|
245
|
wp_die( __( 'You do not have permission to install plugin updates', 'formidable' ), __( 'Error', 'formidable' ), array( 'response' => 403 ) ); |
|
246
|
246
|
} |
|
247
|
247
|
|
|
248
|
|
- $data = $frm_edd_plugin_data[ $_REQUEST['slug'] ]; |
|
|
248
|
+ $data = $frm_edd_plugin_data[$_REQUEST['slug']]; |
|
249
|
249
|
$cache_key = md5( 'edd_plugin_' . sanitize_key( $_REQUEST['plugin'] ) . '_version_info' ); |
|
250
|
250
|
$version_info = get_transient( $cache_key ); |
|
251
|
251
|
|