Orbit Fox by ThemeIsle - Version 2.8.2

Version Description

  • 2019-04-18
Download this release

Release Info

Developer codeinwp
Plugin Icon 128x128 Orbit Fox by ThemeIsle
Version 2.8.2
Comparing to
See all releases

Code changes from version 2.8.1 to 2.8.2

CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
 
 
 
 
 
2
  ### v2.8.1 - 2019-04-18
3
  **Changes:**
4
  * Fix issues with newsletter form
1
 
2
+ ### v2.8.2 - 2019-04-18
3
+ **Changes:**
4
+ * Fix PHP notice
5
+
6
  ### v2.8.1 - 2019-04-18
7
  **Changes:**
8
  * Fix issues with newsletter form
core/assets/css/orbit-fox-admin.css CHANGED
@@ -8,7 +8,7 @@
8
  * Extends Spectre.css Library
9
  */
10
  /*
11
- Version: 2.8.1
12
  */
13
 
14
  /* Document
8
  * Extends Spectre.css Library
9
  */
10
  /*
11
+ Version: 2.8.2
12
  */
13
 
14
  /* Document
core/includes/class-orbit-fox.php CHANGED
@@ -69,7 +69,7 @@ class Orbit_Fox {
69
 
70
  $this->plugin_name = 'orbit-fox';
71
 
72
- $this->version = '2.8.1';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
69
 
70
  $this->plugin_name = 'orbit-fox';
71
 
72
+ $this->version = '2.8.2';
73
 
74
  $this->load_dependencies();
75
  $this->set_locale();
readme.md CHANGED
@@ -110,6 +110,11 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
110
  5. Social Sharing Module
111
 
112
  ## Changelog ##
 
 
 
 
 
113
  ### 2.8.1 - 2019-04-18 ###
114
 
115
  * Fix issues with newsletter form
110
  5. Social Sharing Module
111
 
112
  ## Changelog ##
113
+ ### 2.8.2 - 2019-04-18 ###
114
+
115
+ * Fix PHP notice
116
+
117
+
118
  ### 2.8.1 - 2019-04-18 ###
119
 
120
  * Fix issues with newsletter form
readme.txt CHANGED
@@ -110,6 +110,11 @@ Activating the Orbit Fox plugin is just like any other plugin. If you've uploade
110
  5. Social Sharing Module
111
 
112
  == Changelog ==
 
 
 
 
 
113
  = 2.8.1 - 2019-04-18 =
114
 
115
  * Fix issues with newsletter form
110
  5. Social Sharing Module
111
 
112
  == Changelog ==
113
+ = 2.8.2 - 2019-04-18 =
114
+
115
+ * Fix PHP notice
116
+
117
+
118
  = 2.8.1 - 2019-04-18 =
119
 
120
  * Fix issues with newsletter form
themeisle-companion.php CHANGED
@@ -15,7 +15,7 @@
15
  * Plugin Name: Orbit Fox Companion
16
  * Plugin URI: https://orbitfox.com/
17
  * Description: This swiss-knife plugin comes with a quality template library, menu/sharing icons modules, Gutenberg blocks, and newly added Elementor/BeaverBuilder page builder widgets on each release.
18
- * Version: 2.8.1
19
  * Author: Themeisle
20
  * Author URI: https://orbitfox.com/
21
  * License: GPL-2.0+
15
  * Plugin Name: Orbit Fox Companion
16
  * Plugin URI: https://orbitfox.com/
17
  * Description: This swiss-knife plugin comes with a quality template library, menu/sharing icons modules, Gutenberg blocks, and newly added Elementor/BeaverBuilder page builder widgets on each release.
18
+ * Version: 2.8.2
19
  * Author: Themeisle
20
  * Author URI: https://orbitfox.com/
21
  * License: GPL-2.0+
themeisle-hash.json CHANGED
@@ -1 +1 @@
1
- {"class-autoloader.php":"61ea652f66f6ca0ead234c6357f88791","index.php":"39ab8276fb0e4bd3fcab3270822c5977","themeisle-companion.php":"acc45bfa49f7251d8d8bbed75e768415","uninstall.php":"7abf753a29e0eb3a844c8a0ba9493b7c"}
1
+ {"class-autoloader.php":"61ea652f66f6ca0ead234c6357f88791","index.php":"39ab8276fb0e4bd3fcab3270822c5977","themeisle-companion.php":"ee3c56cc1b013c1f61814cbe7a5d3d48","uninstall.php":"7abf753a29e0eb3a844c8a0ba9493b7c"}
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit54829909d48bc527938037560102d4d9::getLoader();
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInitfdee3f0cd24b41adebeb9226e4376e52::getLoader();
vendor/codeinwp/themeisle-content-forms/load.php CHANGED
@@ -59,13 +59,7 @@ if ( ! function_exists( 'themeisle_content_forms_register_public_assets' ) ) :
59
  * Also, localize REST params
60
  */
61
  function themeisle_content_forms_register_public_assets() {
62
- $version = null; // a null version will go for a WordPress core version
63
-
64
- $package = json_decode( file_get_contents( dirname( __FILE__ ) . '/composer.json' ) );
65
-
66
- if ( isset( $package->version ) ) {
67
- $version = $package->version;
68
- }
69
 
70
  wp_register_script( 'content-forms', plugins_url( '/assets/content-forms.js', __FILE__ ), array( 'jquery' ), $version );
71
 
59
  * Also, localize REST params
60
  */
61
  function themeisle_content_forms_register_public_assets() {
62
+ $version = '1.2.1'; // the current plugin version
 
 
 
 
 
 
63
 
64
  wp_register_script( 'content-forms', plugins_url( '/assets/content-forms.js', __FILE__ ), array( 'jquery' ), $version );
65
 
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit54829909d48bc527938037560102d4d9
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit54829909d48bc527938037560102d4d9
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit54829909d48bc527938037560102d4d9', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit54829909d48bc527938037560102d4d9', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
@@ -42,14 +42,14 @@ class ComposerAutoloaderInit54829909d48bc527938037560102d4d9
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
- composerRequire54829909d48bc527938037560102d4d9($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
- function composerRequire54829909d48bc527938037560102d4d9($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInitfdee3f0cd24b41adebeb9226e4376e52
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInitfdee3f0cd24b41adebeb9226e4376e52', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInitfdee3f0cd24b41adebeb9226e4376e52', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
+ composerRequirefdee3f0cd24b41adebeb9226e4376e52($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
+ function composerRequirefdee3f0cd24b41adebeb9226e4376e52($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;
vendor/composer/installed.json CHANGED
@@ -119,15 +119,15 @@
119
  "source": {
120
  "type": "git",
121
  "url": "https://github.com/Codeinwp/themeisle-content-forms.git",
122
- "reference": "956f286a24ce8375e60d972fea7afb6b2be29428"
123
  },
124
  "dist": {
125
  "type": "zip",
126
- "url": "https://api.github.com/repos/Codeinwp/themeisle-content-forms/zipball/956f286a24ce8375e60d972fea7afb6b2be29428",
127
- "reference": "956f286a24ce8375e60d972fea7afb6b2be29428",
128
  "shasum": ""
129
  },
130
- "time": "2019-04-17 09:29:49",
131
  "type": "library",
132
  "installation-source": "source",
133
  "autoload": {
119
  "source": {
120
  "type": "git",
121
  "url": "https://github.com/Codeinwp/themeisle-content-forms.git",
122
+ "reference": "b0b62ae30104748832b4b456a6d6456be80ad8ae"
123
  },
124
  "dist": {
125
  "type": "zip",
126
+ "url": "https://api.github.com/repos/Codeinwp/themeisle-content-forms/zipball/b0b62ae30104748832b4b456a6d6456be80ad8ae",
127
+ "reference": "b0b62ae30104748832b4b456a6d6456be80ad8ae",
128
  "shasum": ""
129
  },
130
+ "time": "2019-04-18 14:41:11",
131
  "type": "library",
132
  "installation-source": "source",
133
  "autoload": {