Changeset 1987686
- Timestamp:
- 12/07/2018 10:20:06 AM (7 years ago)
- Location:
- customify/trunk
- Files:
-
- 3 edited
-
customify.php (modified) (2 diffs)
-
features/class-Font_Selector.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
customify/trunk/customify.php
r1985364 r1987686 4 4 Plugin URI: https://wordpress.org/plugins/customify/ 5 5 Description: A Theme Customizer Booster 6 Version: 2.3. 06 Version: 2.3.1 7 7 Author: Pixelgrade 8 8 Author URI: https://pixelgrade.com … … 62 62 require_once plugin_dir_path( __FILE__ ) . 'class-pixcustomify.php'; 63 63 64 $instance = PixCustomifyPlugin::instance( __FILE__, '2.3. 0' );64 $instance = PixCustomifyPlugin::instance( __FILE__, '2.3.1' ); 65 65 66 66 return $instance; -
customify/trunk/features/class-Font_Selector.php
r1985364 r1987686 219 219 // $value['variants'] = $this->theme_fonts[ $value['font_family'] ]['variants']; 220 220 221 if ( false === strpos( $args['local_families'], $value['font_family'] ) ) {221 if ( false === array_search( $value['font_family'], $args['local_families'] ) ) { 222 222 $args['local_families'][] = "'" . $value['font_family'] . "'"; 223 223 } 224 224 225 if ( false === strpos( $args['local_srcs'], $this->theme_fonts[ $value['font_family'] ]['src'] ) ) {225 if ( false === array_search( $this->theme_fonts[ $value['font_family'] ]['src'], $args['local_srcs'] ) ) { 226 226 $args['local_srcs'][] = "'" . $this->theme_fonts[ $value['font_family'] ]['src'] . "'"; 227 227 } -
customify/trunk/readme.txt
r1985372 r1987686 46 46 == Changelog == 47 47 48 = 2.3.1 = 49 * Fixed some warnings that appeared in certain situations. 50 48 51 = 2.3.0 = 49 52 * Improved support for the new **Gutenberg block editor.** Compatible with the latest WordPress 5.0 beta version.
Note: See TracChangeset
for help on using the changeset viewer.