Plugin Directory

Changeset 2575167


Ignore:
Timestamp:
07/30/2021 08:14:47 AM (5 years ago)
Author:
flothemesplugins
Message:

v 1.0.40

Location:
flo-forms/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • flo-forms/trunk/README.txt

    r2563626 r2575167  
    55Requires at least: 5.0.0
    66Tested up to: 5.8
    7 Stable tag: 1.0.39
     7Stable tag: 1.0.40
    88Author: Flothemes
    99Author URI: https://flothemes.com/
     
    5050
    5151== Changelog ==
     52
     53= 1.0.40 =
     54* WP 5.8 widgets page - conflict fix
    5255
    5356= 1.0.39 =
  • flo-forms/trunk/admin/class-flo-forms-admin.php

    r2563626 r2575167  
    10871087            }
    10881088
     1089            $dependencies = array(
     1090                'jquery',
     1091                'wp-blocks',
     1092                'wp-i18n',
     1093                'wp-element',
     1094                'wp-dom-ready',
     1095                'wp-components'
     1096            );
     1097
     1098            if( strpos($_SERVER['REQUEST_URI'], 'widgets.php') === false ) {
     1099                // 'wp-editor' causes conflict on the widgets page. Therefore we need to make sure it is not included on that page.
     1100                $dependencies[] = 'wp-editor';
     1101            }
     1102
    10891103            wp_register_script(
    10901104                'flo-forms-block',
    10911105                //plugins_url($index_js, __FILE__),
    10921106                plugin_dir_url(__FILE__) . '../admin/js-non-merged/flo-forms-gutenberg-block.js',
    1093                 array(
    1094                     'jquery',
    1095                     'wp-editor',
    1096                     'wp-blocks',
    1097                     'wp-i18n',
    1098                     'wp-element',
    1099                     'wp-dom-ready',
    1100                     'wp-components',
    1101 
    1102                 ),
     1107                $dependencies,
    11031108                true // or maybe add the plugin version
    11041109
  • flo-forms/trunk/flo-forms.php

    r2563626 r2575167  
    44Plugin URI:        https://flothemes.com/floforms
    55Description:       A easy to use contact form builder plugin
    6 Version:           1.0.39
     6Version:           1.0.40
    77Author:            Flothemes
    88Author URI:        https://flothemes.com
Note: See TracChangeset for help on using the changeset viewer.