Plugin Directory

Changeset 1987686


Ignore:
Timestamp:
12/07/2018 10:20:06 AM (7 years ago)
Author:
vlad.olaru
Message:

Fixed some warnings

Location:
customify/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • customify/trunk/customify.php

    r1985364 r1987686  
    44Plugin URI:  https://wordpress.org/plugins/customify/
    55Description: A Theme Customizer Booster
    6 Version: 2.3.0
     6Version: 2.3.1
    77Author: Pixelgrade
    88Author URI: https://pixelgrade.com
     
    6262    require_once plugin_dir_path( __FILE__ ) . 'class-pixcustomify.php';
    6363
    64     $instance = PixCustomifyPlugin::instance( __FILE__, '2.3.0' );
     64    $instance = PixCustomifyPlugin::instance( __FILE__, '2.3.1' );
    6565
    6666    return $instance;
  • customify/trunk/features/class-Font_Selector.php

    r1985364 r1987686  
    219219//                  $value['variants'] = $this->theme_fonts[ $value['font_family'] ]['variants'];
    220220
    221                     if ( false === strpos( $args['local_families'], $value['font_family'] ) ) {
     221                    if ( false === array_search( $value['font_family'], $args['local_families'] ) ) {
    222222                        $args['local_families'][] = "'" . $value['font_family'] . "'";
    223223                    }
    224224
    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'] ) ) {
    226226                        $args['local_srcs'][] = "'" . $this->theme_fonts[ $value['font_family'] ]['src'] . "'";
    227227                    }
  • customify/trunk/readme.txt

    r1985372 r1987686  
    4646== Changelog ==
    4747
     48= 2.3.1 =
     49* Fixed some warnings that appeared in certain situations.
     50
    4851= 2.3.0 =
    4952* 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.