PixTypes - Version 1.4.6

Version Description

  • Fixed HTTPS WP admin issue with regards to assets.
Download this release

Release Info

Developer euthelup
Plugin Icon wp plugin PixTypes
Version 1.4.6
Comparing to
See all releases

Code changes from version 1.4.5 to 1.4.6

class-pixtypes.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package PixTypes
6
  * @author Pixelgrade <contact@pixelgrade.com>
7
  * @license GPL-2.0+
8
- * @link http://pixelgrade.com
9
  * @copyright 2013-2017 Pixelgrade
10
  */
11
 
@@ -24,7 +24,7 @@ class PixTypesPlugin {
24
  *
25
  * @const string
26
  */
27
- protected $version = '1.4.5';
28
  /**
29
  * Unique identifier for your plugin.
30
  *
5
  * @package PixTypes
6
  * @author Pixelgrade <contact@pixelgrade.com>
7
  * @license GPL-2.0+
8
+ * @link https://pixelgrade.com
9
  * @copyright 2013-2017 Pixelgrade
10
  */
11
 
24
  *
25
  * @const string
26
  */
27
+ protected $version = '1.4.6';
28
  /**
29
  * Unique identifier for your plugin.
30
  *
features/metaboxes/init.php CHANGED
@@ -86,10 +86,10 @@ class cmb_Meta_Box_Validate {
86
  */
87
  if ( strtoupper( substr( PHP_OS, 0, 3 ) ) === 'WIN' ) {
88
  //winblows
89
- define( 'CMB_META_BOX_URL', trailingslashit( str_replace( DIRECTORY_SEPARATOR, '/', str_replace( str_replace( '/', DIRECTORY_SEPARATOR, WP_CONTENT_DIR ), WP_CONTENT_URL, dirname( __FILE__ ) ) ) ) );
90
 
91
  } else {
92
- define( 'CMB_META_BOX_URL', apply_filters( 'cmb_meta_box_url', trailingslashit( str_replace( WP_CONTENT_DIR, WP_CONTENT_URL, dirname( __FILE__ ) ) ) ) );
93
  }
94
 
95
  /**
86
  */
87
  if ( strtoupper( substr( PHP_OS, 0, 3 ) ) === 'WIN' ) {
88
  //winblows
89
+ define( 'CMB_META_BOX_URL', trailingslashit( str_replace( DIRECTORY_SEPARATOR, '/', str_replace( str_replace( '/', DIRECTORY_SEPARATOR, WP_CONTENT_DIR ), content_url(), dirname( __FILE__ ) ) ) ) );
90
 
91
  } else {
92
+ define( 'CMB_META_BOX_URL', apply_filters( 'cmb_meta_box_url', trailingslashit( str_replace( WP_CONTENT_DIR, content_url(), dirname( __FILE__ ) ) ) ) );
93
  }
94
 
95
  /**
pixtypes.php CHANGED
@@ -10,7 +10,7 @@
10
  Plugin Name: PixTypes
11
  Plugin URI: https://pixelgrade.com
12
  Description: Custom post types and meta-boxes needed by your theme
13
- Version: 1.4.5
14
  Author: Pixelgrade
15
  Author URI: https://pixelgrade.com
16
  Author Email: contact@pixelgrade.com
10
  Plugin Name: PixTypes
11
  Plugin URI: https://pixelgrade.com
12
  Description: Custom post types and meta-boxes needed by your theme
13
+ Version: 1.4.6
14
  Author: Pixelgrade
15
  Author URI: https://pixelgrade.com
16
  Author Email: contact@pixelgrade.com
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: pixelgrade, euthelup, babbardel, vlad.olaru, cristianfrumusanu, ra
3
  Tags: custom, post-types, metadata, builder, gallery
4
  Requires at least: 4.3.0
5
  Tested up to: 4.7.2
6
- Stable tag: 1.4.5
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -24,6 +24,9 @@ Note: This plugin is addressed to developers, it doesn't do nothing if it isn't
24
 
25
  == Changelog ==
26
 
 
 
 
27
  = 1.4.5 =
28
  * Added advanced show_on behaviour and filtering.
29
 
3
  Tags: custom, post-types, metadata, builder, gallery
4
  Requires at least: 4.3.0
5
  Tested up to: 4.7.2
6
+ Stable tag: 1.4.6
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
24
 
25
  == Changelog ==
26
 
27
+ = 1.4.6 =
28
+ * Fixed HTTPS WP admin issue with regards to assets.
29
+
30
  = 1.4.5 =
31
  * Added advanced show_on behaviour and filtering.
32