PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.4.2
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.4.2
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | vendor/codeinwp/themeisle-sdk/src/Modules/Logger.php +2 -1 3.1.33.4.2 View file →
@@ -151,9 +151,9 @@
151 151 $environment['theme'] = array();
152 152 $environment['theme']['name'] = $theme->get( 'Name' );
153 153 $environment['theme']['author'] = $theme->get( 'Author' );
154 154 $environment['plugins'] = get_option( 'active_plugins' );
155 -
155 + global $wp_version;
156 156 wp_remote_post(
157 157 self::TRACKING_ENDPOINT,
158 158 array(
159 159 'method' => 'POST',
@@ -165,8 +165,9 @@
165 165 'body' => array(
166 166 'site' => get_site_url(),
167 167 'slug' => $this->product->get_slug(),
168 168 'version' => $this->product->get_version(),
169 + 'wp_version' => $wp_version,
169 170 'data' => apply_filters( $this->product->get_key() . '_logger_data', array() ),
170 171 'environment' => $environment,
171 172 'license' => apply_filters( $this->product->get_key() . '_license_status', '' ),
172 173 ),