PluginProbe
Elementor Website Builder – more than just a page builder / 3.6.4
Elementor Website Builder – more than just a page builder v3.6.4
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
← All changes | core/utils/plugins-manager.php +3 -3 4.2.23.6.4 View file →
@@ -46,9 +46,9 @@
46 46 $plugins = [ $plugins ];
47 47 }
48 48
49 49 foreach ( $plugins as $plugin ) {
50 - if ( in_array( $plugin, $already_installed_plugins->keys()->all(), true ) ) {
50 + if ( in_array( $plugin, $already_installed_plugins->keys(), true ) ) {
51 51 $succeeded[] = $plugin;
52 52 continue;
53 53 }
54 54
@@ -56,9 +56,9 @@
56 56
57 57 $api = Plugin::$instance->wp->plugins_api('plugin_information',
58 58 [
59 59 'slug' => $slug,
60 - 'fields' => [
60 + 'fields' => array(
61 61 'short_description' => false,
62 62 'sections' => false,
63 63 'requires' => false,
64 64 'rating' => false,
@@ -69,9 +69,9 @@
69 69 'tags' => false,
70 70 'compatibility' => false,
71 71 'homepage' => false,
72 72 'donate_link' => false,
73 - ],
73 + ),
74 74 ]
75 75 );
76 76
77 77 if ( ! isset( $api->download_link ) ) {