Plugin Directory

Changeset 3036370


Ignore:
Timestamp:
02/15/2024 02:48:23 PM (22 months ago)
Author:
formidableforms
Message:

Update to version 6.8.2 from GitHub

Location:
formidable
Files:
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • formidable/tags/6.8.2/classes/controllers/FrmAddonsController.php

    r3026901 r3036370  
    12851285            update_option( 'frm_connect_token', $auth, 'no' );
    12861286        }
    1287         $link = FrmAppHelper::admin_upgrade_link( 'connect', 'api-connect' );
     1287        $link = 'https://formidableforms.com/api-connect/';
    12881288        $args = array(
    12891289            'v'       => 2,
  • formidable/tags/6.8.2/classes/helpers/FrmAppHelper.php

    r3035860 r3036370  
    3434     * @var string
    3535     */
    36     public static $plug_version = '6.8.1';
     36    public static $plug_version = '6.8.2';
    3737
    3838    /**
  • formidable/tags/6.8.2/classes/models/FrmAddon.php

    r3017166 r3036370  
    231231     * @since 3.04.03
    232232     *
    233      * @param array $error
     233     * @param array|string $error
    234234     */
    235235    public function maybe_clear_license( $error ) {
    236         if ( $error['code'] === 'disabled' && $error['license'] === $this->license ) {
     236        if ( is_array( $error ) && $error['code'] === 'disabled' && $error['license'] === $this->license ) {
    237237            $this->clear_license();
    238238        }
  • formidable/tags/6.8.2/classes/models/FrmFormApi.php

    r3017166 r3036370  
    259259        $errors = array();
    260260        if ( isset( $addons['error'] ) ) {
    261             $errors[] = $addons['error']['message'];
     261            if ( is_string( $addons['error'] ) ) {
     262                $errors[] = $addons['error'];
     263            } elseif ( ! empty( $addons['error']['message'] ) ) {
     264                $errors[] = $addons['error']['message'];
     265            }
     266
    262267            do_action( 'frm_license_error', $addons['error'] );
    263268        }
  • formidable/tags/6.8.2/formidable.php

    r3035860 r3036370  
    33 * Plugin Name: Formidable Forms
    44 * Description: Quickly and easily create drag-and-drop forms
    5  * Version: 6.8.1
     5 * Version: 6.8.2
    66 * Plugin URI: https://formidableforms.com/
    77 * Author URI: https://formidableforms.com/
  • formidable/tags/6.8.2/js/formidable_admin.js

    r3035860 r3036370  
    99    var el = {
    1010        messageBox: null,
    11         btn: null,
    1211        reset: null,
    1312
    1413        setElements: function() {
    1514            el.messageBox = document.querySelector( '.frm_pro_license_msg' );
    16             el.btn = document.getElementById( 'frm-settings-connect-btn' );
    1715            el.reset = document.getElementById( 'frm_reconnect_link' );
    1816        }
     
    4543            if ( el.reset !== null ) {
    4644                $( el.reset ).on( 'click', app.reauthorize );
    47             }
    48 
    49             $( el.btn ).on( 'click', function( e ) {
    50                 e.preventDefault();
    51                 app.gotoUpgradeUrl();
    52             });
    53 
    54             window.addEventListener( 'message', function( msg ) {
    55                 if ( msg.origin.replace( /\/$/, '' ) !== frmGlobal.app_url.replace( /\/$/, '' ) ) {
    56                     return;
    57                 }
    58 
    59                 if ( ! msg.data || 'object' !== typeof msg.data ) {
    60                     console.error( 'Messages from "' + frmGlobal.app_url + '" must contain an api key string.' );
    61                     return;
    62                 }
    63 
    64                 app.updateForm( msg.data );
    65             });
    66         },
    67 
    68         /**
    69          * Go to upgrade url.
    70          *
    71          * @since 4.03
    72          */
    73         gotoUpgradeUrl: function() {
    74             var w = window.open( frmGlobal.app_url + '/api-connect/', '_blank', 'location=no,width=500,height=730,scrollbars=0' );
    75             w.focus();
    76         },
    77 
    78         updateForm: function( response ) {
    79 
    80             // Start spinner.
    81             var btn = el.btn;
    82             btn.classList.add( 'frm_loading_button' );
    83 
    84             if ( response.url !== '' ) {
    85                 app.showProgress({
    86                     success: true,
    87                     message: 'Installing...'
    88                 });
    89                 var fallback = setTimeout( function() {
    90                     app.showProgress({
    91                         success: true,
    92                         message: 'Installing is taking longer than expected. <a class="frm-install-addon button button-primary frm-button-primary" rel="' + response.url + '" aria-label="Install">Install Now</a>'
    93                     });
    94                 }, 10000 );
    95                 $.ajax({
    96                     type: 'POST',
    97                     url: ajaxurl,
    98                     dataType: 'json',
    99                     data: {
    100                         action: 'frm_connect',
    101                         plugin: response.url,
    102                         nonce: frmGlobal.nonce
    103                     },
    104                     success: function() {
    105                         clearTimeout( fallback );
    106                         app.activateKey( response );
    107                     },
    108                     error: function( xhr, textStatus, e ) {
    109                         clearTimeout( fallback );
    110                         btn.classList.remove( 'frm_loading_button' );
    111                         app.showMessage({
    112                             success: false,
    113                             message: e
    114                         });
    115                     }
    116                 });
    117             } else if ( response.key !== '' ) {
    118                 app.activateKey( response );
    119             }
    120         },
    121 
    122         activateKey: function( response ) {
    123             var btn = el.btn;
    124             if ( response.key === '' ) {
    125                 btn.classList.remove( 'frm_loading_button' );
    126             } else {
    127                 app.showProgress({
    128                     success: true,
    129                     message: 'Activating...'
    130                 });
    131                 $.ajax({
    132                     type: 'POST',
    133                     url: ajaxurl,
    134                     dataType: 'json',
    135                     data: {
    136                         action: 'frm_addon_activate',
    137                         license: response.key,
    138                         plugin: 'formidable_pro',
    139                         wpmu: 0,
    140                         nonce: frmGlobal.nonce
    141                     },
    142                     success: function( msg ) {
    143                         btn.classList.remove( 'frm_loading_button' );
    144 
    145                         if ( msg.success === true ) {
    146                             app.showAuthorized( true );
    147                         }
    148 
    149                         app.showMessage( msg );
    150                     },
    151                     error: function( xhr, textStatus, e ) {
    152                         btn.classList.remove( 'frm_loading_button' );
    153                         app.showMessage({
    154                             success: false,
    155                             message: e
    156                         });
    157                     }
    158                 });
    15945            }
    16046        },
  • formidable/tags/6.8.2/languages/formidable.pot

    r3035860 r3036370  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Formidable Forms 6.8.1\n"
     5"Project-Id-Version: Formidable Forms 6.8.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-02-14T18:36:10+00:00\n"
     12"POT-Creation-Date: 2024-02-15T14:29:17+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.9.0\n"
     
    413413#: stripe/controllers/FrmTransLiteSubscriptionsController.php:68
    414414#: js/admin/style.js:939
    415 #: js/formidable_admin.js:4218
     415#: js/formidable_admin.js:4104
    416416msgid "Cancel"
    417417msgstr ""
     
    12351235#: classes/models/FrmPluginSearch.php:319
    12361236#: classes/views/addons/settings.php:31
    1237 #: js/formidable_admin.js:6739
     1237#: js/formidable_admin.js:6625
    12381238msgid "Activate"
    12391239msgstr ""
     
    13221322
    13231323#: classes/controllers/FrmStylesController.php:948
    1324 #: js/formidable_admin.js:2424
     1324#: js/formidable_admin.js:2310
    13251325msgid "Field Settings"
    13261326msgstr ""
     
    24592459#: stripe/views/payments/show.php:156
    24602460#: stripe/views/subscriptions/show.php:129
    2461 #: js/formidable_admin.js:2452
     2461#: js/formidable_admin.js:2338
    24622462msgid "Delete"
    24632463msgstr ""
     
    39313931#: classes/helpers/FrmFormsHelper.php:1758
    39323932#: classes/views/form-templates/modals/name-your-form-modal.php:35
    3933 #: js/formidable_admin.js:4223
     3933#: js/formidable_admin.js:4109
    39343934msgid "Save"
    39353935msgstr ""
     
    52785278#: classes/views/frm-fields/back-end/inline-modal.php:8
    52795279#: classes/views/shared/admin-header.php:71
    5280 #: js/formidable_admin.js:8819
     5280#: js/formidable_admin.js:8705
    52815281msgid "Close"
    52825282msgstr ""
     
    58615861#: classes/views/frm-form-actions/form_action.php:32
    58625862#: js/admin/style.js:678
    5863 #: js/formidable_admin.js:2458
     5863#: js/formidable_admin.js:2344
    58645864msgid "Duplicate"
    58655865msgstr ""
     
    60066006
    60076007#: classes/views/frm-forms/add_field.php:36
    6008 #: js/formidable_admin.js:1536
    6009 #: js/formidable_admin.js:1541
    6010 #: js/formidable_admin.js:2383
     6008#: js/formidable_admin.js:1422
     6009#: js/formidable_admin.js:1427
     6010#: js/formidable_admin.js:2269
    60116011msgid "More Options"
    60126012msgstr ""
    60136013
    60146014#: classes/views/frm-forms/add_field.php:38
    6015 #: js/formidable_admin.js:1528
     6015#: js/formidable_admin.js:1414
    60166016msgid "Toggle More Options Dropdown"
    60176017msgstr ""
     
    79257925msgstr ""
    79267926
    7927 #: js/formidable_admin.js:1487
     7927#: js/formidable_admin.js:1373
    79287928msgid "Set Row Layout"
    79297929msgstr ""
    79307930
    7931 #: js/formidable_admin.js:1494
     7931#: js/formidable_admin.js:1380
    79327932msgid "Move Field Group"
    79337933msgstr ""
    79347934
    7935 #: js/formidable_admin.js:2452
     7935#: js/formidable_admin.js:2338
    79367936msgid "Delete Group"
    79377937msgstr ""
    79387938
    7939 #: js/formidable_admin.js:2458
     7939#: js/formidable_admin.js:2344
    79407940msgid "Duplicate Group"
    79417941msgstr ""
    79427942
    79437943#. translators: %1$s: Number of fields that are selected to be deleted.
    7944 #: js/formidable_admin.js:3678
     7944#: js/formidable_admin.js:3564
    79457945msgid "Are you sure you want to delete these %1$s selected field(s)?"
    79467946msgstr ""
    79477947
    7948 #: js/formidable_admin.js:3916
     7948#: js/formidable_admin.js:3802
    79497949msgid "Custom layout"
    79507950msgstr ""
    79517951
    7952 #: js/formidable_admin.js:3939
     7952#: js/formidable_admin.js:3825
    79537953msgid "Break into rows"
    79547954msgstr ""
    79557955
    7956 #: js/formidable_admin.js:3949
     7956#: js/formidable_admin.js:3835
    79577957msgid "Row Layout"
    79587958msgstr ""
    79597959
    7960 #: js/formidable_admin.js:4203
     7960#: js/formidable_admin.js:4089
    79617961msgid "Enter number of columns for each field"
    79627962msgstr ""
    79637963
    7964 #: js/formidable_admin.js:4207
     7964#: js/formidable_admin.js:4093
    79657965msgid "Layouts are based on a 12-column grid system"
    79667966msgstr ""
    79677967
    7968 #: js/formidable_admin.js:4660
     7968#: js/formidable_admin.js:4546
    79697969msgid "Merge into row"
    79707970msgstr ""
    79717971
    7972 #: js/formidable_admin.js:5959
     7972#: js/formidable_admin.js:5845
    79737973msgid "Duplicate option value \"%s\" detected"
    79747974msgstr ""
    79757975
    7976 #: js/formidable_admin.js:8804
     7976#: js/formidable_admin.js:8690
    79777977msgid "Save and Reload"
    79787978msgstr ""
    79797979
    7980 #: js/formidable_admin.js:8973
     7980#: js/formidable_admin.js:8859
    79817981msgid "Unable to install template"
    79827982msgstr ""
    79837983
    7984 #: js/formidable_admin.js:9620
     7984#: js/formidable_admin.js:9506
    79857985msgid "Thank you for signing up!"
    79867986msgstr ""
  • formidable/tags/6.8.2/readme.txt

    r3035860 r3036370  
    66Tested up to: 6.4.3
    77Requires PHP: 5.6
    8 Stable tag: 6.8.1
     8Stable tag: 6.8.2
    99
    1010The most advanced WordPress forms plugin. Go beyond contact forms with our drag and drop form builder for surveys, quizzes, and more.
     
    443443
    444444== Changelog ==
     445= 6.8.2 =
     446* Fix: The process of connecting an account to formidableforms.com would fail in some web browsers.
     447
    445448= 6.8.1 =
    446449* Security: A nonce check was missing on an action for dismissing a call to action on the global settings page.
  • formidable/trunk/classes/controllers/FrmAddonsController.php

    r3026901 r3036370  
    12851285            update_option( 'frm_connect_token', $auth, 'no' );
    12861286        }
    1287         $link = FrmAppHelper::admin_upgrade_link( 'connect', 'api-connect' );
     1287        $link = 'https://formidableforms.com/api-connect/';
    12881288        $args = array(
    12891289            'v'       => 2,
  • formidable/trunk/classes/helpers/FrmAppHelper.php

    r3035860 r3036370  
    3434     * @var string
    3535     */
    36     public static $plug_version = '6.8.1';
     36    public static $plug_version = '6.8.2';
    3737
    3838    /**
  • formidable/trunk/classes/models/FrmAddon.php

    r3017166 r3036370  
    231231     * @since 3.04.03
    232232     *
    233      * @param array $error
     233     * @param array|string $error
    234234     */
    235235    public function maybe_clear_license( $error ) {
    236         if ( $error['code'] === 'disabled' && $error['license'] === $this->license ) {
     236        if ( is_array( $error ) && $error['code'] === 'disabled' && $error['license'] === $this->license ) {
    237237            $this->clear_license();
    238238        }
  • formidable/trunk/classes/models/FrmFormApi.php

    r3017166 r3036370  
    259259        $errors = array();
    260260        if ( isset( $addons['error'] ) ) {
    261             $errors[] = $addons['error']['message'];
     261            if ( is_string( $addons['error'] ) ) {
     262                $errors[] = $addons['error'];
     263            } elseif ( ! empty( $addons['error']['message'] ) ) {
     264                $errors[] = $addons['error']['message'];
     265            }
     266
    262267            do_action( 'frm_license_error', $addons['error'] );
    263268        }
  • formidable/trunk/formidable.php

    r3035860 r3036370  
    33 * Plugin Name: Formidable Forms
    44 * Description: Quickly and easily create drag-and-drop forms
    5  * Version: 6.8.1
     5 * Version: 6.8.2
    66 * Plugin URI: https://formidableforms.com/
    77 * Author URI: https://formidableforms.com/
  • formidable/trunk/js/formidable_admin.js

    r3035860 r3036370  
    99    var el = {
    1010        messageBox: null,
    11         btn: null,
    1211        reset: null,
    1312
    1413        setElements: function() {
    1514            el.messageBox = document.querySelector( '.frm_pro_license_msg' );
    16             el.btn = document.getElementById( 'frm-settings-connect-btn' );
    1715            el.reset = document.getElementById( 'frm_reconnect_link' );
    1816        }
     
    4543            if ( el.reset !== null ) {
    4644                $( el.reset ).on( 'click', app.reauthorize );
    47             }
    48 
    49             $( el.btn ).on( 'click', function( e ) {
    50                 e.preventDefault();
    51                 app.gotoUpgradeUrl();
    52             });
    53 
    54             window.addEventListener( 'message', function( msg ) {
    55                 if ( msg.origin.replace( /\/$/, '' ) !== frmGlobal.app_url.replace( /\/$/, '' ) ) {
    56                     return;
    57                 }
    58 
    59                 if ( ! msg.data || 'object' !== typeof msg.data ) {
    60                     console.error( 'Messages from "' + frmGlobal.app_url + '" must contain an api key string.' );
    61                     return;
    62                 }
    63 
    64                 app.updateForm( msg.data );
    65             });
    66         },
    67 
    68         /**
    69          * Go to upgrade url.
    70          *
    71          * @since 4.03
    72          */
    73         gotoUpgradeUrl: function() {
    74             var w = window.open( frmGlobal.app_url + '/api-connect/', '_blank', 'location=no,width=500,height=730,scrollbars=0' );
    75             w.focus();
    76         },
    77 
    78         updateForm: function( response ) {
    79 
    80             // Start spinner.
    81             var btn = el.btn;
    82             btn.classList.add( 'frm_loading_button' );
    83 
    84             if ( response.url !== '' ) {
    85                 app.showProgress({
    86                     success: true,
    87                     message: 'Installing...'
    88                 });
    89                 var fallback = setTimeout( function() {
    90                     app.showProgress({
    91                         success: true,
    92                         message: 'Installing is taking longer than expected. <a class="frm-install-addon button button-primary frm-button-primary" rel="' + response.url + '" aria-label="Install">Install Now</a>'
    93                     });
    94                 }, 10000 );
    95                 $.ajax({
    96                     type: 'POST',
    97                     url: ajaxurl,
    98                     dataType: 'json',
    99                     data: {
    100                         action: 'frm_connect',
    101                         plugin: response.url,
    102                         nonce: frmGlobal.nonce
    103                     },
    104                     success: function() {
    105                         clearTimeout( fallback );
    106                         app.activateKey( response );
    107                     },
    108                     error: function( xhr, textStatus, e ) {
    109                         clearTimeout( fallback );
    110                         btn.classList.remove( 'frm_loading_button' );
    111                         app.showMessage({
    112                             success: false,
    113                             message: e
    114                         });
    115                     }
    116                 });
    117             } else if ( response.key !== '' ) {
    118                 app.activateKey( response );
    119             }
    120         },
    121 
    122         activateKey: function( response ) {
    123             var btn = el.btn;
    124             if ( response.key === '' ) {
    125                 btn.classList.remove( 'frm_loading_button' );
    126             } else {
    127                 app.showProgress({
    128                     success: true,
    129                     message: 'Activating...'
    130                 });
    131                 $.ajax({
    132                     type: 'POST',
    133                     url: ajaxurl,
    134                     dataType: 'json',
    135                     data: {
    136                         action: 'frm_addon_activate',
    137                         license: response.key,
    138                         plugin: 'formidable_pro',
    139                         wpmu: 0,
    140                         nonce: frmGlobal.nonce
    141                     },
    142                     success: function( msg ) {
    143                         btn.classList.remove( 'frm_loading_button' );
    144 
    145                         if ( msg.success === true ) {
    146                             app.showAuthorized( true );
    147                         }
    148 
    149                         app.showMessage( msg );
    150                     },
    151                     error: function( xhr, textStatus, e ) {
    152                         btn.classList.remove( 'frm_loading_button' );
    153                         app.showMessage({
    154                             success: false,
    155                             message: e
    156                         });
    157                     }
    158                 });
    15945            }
    16046        },
  • formidable/trunk/languages/formidable.pot

    r3035860 r3036370  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Formidable Forms 6.8.1\n"
     5"Project-Id-Version: Formidable Forms 6.8.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-02-14T18:36:10+00:00\n"
     12"POT-Creation-Date: 2024-02-15T14:29:17+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.9.0\n"
     
    413413#: stripe/controllers/FrmTransLiteSubscriptionsController.php:68
    414414#: js/admin/style.js:939
    415 #: js/formidable_admin.js:4218
     415#: js/formidable_admin.js:4104
    416416msgid "Cancel"
    417417msgstr ""
     
    12351235#: classes/models/FrmPluginSearch.php:319
    12361236#: classes/views/addons/settings.php:31
    1237 #: js/formidable_admin.js:6739
     1237#: js/formidable_admin.js:6625
    12381238msgid "Activate"
    12391239msgstr ""
     
    13221322
    13231323#: classes/controllers/FrmStylesController.php:948
    1324 #: js/formidable_admin.js:2424
     1324#: js/formidable_admin.js:2310
    13251325msgid "Field Settings"
    13261326msgstr ""
     
    24592459#: stripe/views/payments/show.php:156
    24602460#: stripe/views/subscriptions/show.php:129
    2461 #: js/formidable_admin.js:2452
     2461#: js/formidable_admin.js:2338
    24622462msgid "Delete"
    24632463msgstr ""
     
    39313931#: classes/helpers/FrmFormsHelper.php:1758
    39323932#: classes/views/form-templates/modals/name-your-form-modal.php:35
    3933 #: js/formidable_admin.js:4223
     3933#: js/formidable_admin.js:4109
    39343934msgid "Save"
    39353935msgstr ""
     
    52785278#: classes/views/frm-fields/back-end/inline-modal.php:8
    52795279#: classes/views/shared/admin-header.php:71
    5280 #: js/formidable_admin.js:8819
     5280#: js/formidable_admin.js:8705
    52815281msgid "Close"
    52825282msgstr ""
     
    58615861#: classes/views/frm-form-actions/form_action.php:32
    58625862#: js/admin/style.js:678
    5863 #: js/formidable_admin.js:2458
     5863#: js/formidable_admin.js:2344
    58645864msgid "Duplicate"
    58655865msgstr ""
     
    60066006
    60076007#: classes/views/frm-forms/add_field.php:36
    6008 #: js/formidable_admin.js:1536
    6009 #: js/formidable_admin.js:1541
    6010 #: js/formidable_admin.js:2383
     6008#: js/formidable_admin.js:1422
     6009#: js/formidable_admin.js:1427
     6010#: js/formidable_admin.js:2269
    60116011msgid "More Options"
    60126012msgstr ""
    60136013
    60146014#: classes/views/frm-forms/add_field.php:38
    6015 #: js/formidable_admin.js:1528
     6015#: js/formidable_admin.js:1414
    60166016msgid "Toggle More Options Dropdown"
    60176017msgstr ""
     
    79257925msgstr ""
    79267926
    7927 #: js/formidable_admin.js:1487
     7927#: js/formidable_admin.js:1373
    79287928msgid "Set Row Layout"
    79297929msgstr ""
    79307930
    7931 #: js/formidable_admin.js:1494
     7931#: js/formidable_admin.js:1380
    79327932msgid "Move Field Group"
    79337933msgstr ""
    79347934
    7935 #: js/formidable_admin.js:2452
     7935#: js/formidable_admin.js:2338
    79367936msgid "Delete Group"
    79377937msgstr ""
    79387938
    7939 #: js/formidable_admin.js:2458
     7939#: js/formidable_admin.js:2344
    79407940msgid "Duplicate Group"
    79417941msgstr ""
    79427942
    79437943#. translators: %1$s: Number of fields that are selected to be deleted.
    7944 #: js/formidable_admin.js:3678
     7944#: js/formidable_admin.js:3564
    79457945msgid "Are you sure you want to delete these %1$s selected field(s)?"
    79467946msgstr ""
    79477947
    7948 #: js/formidable_admin.js:3916
     7948#: js/formidable_admin.js:3802
    79497949msgid "Custom layout"
    79507950msgstr ""
    79517951
    7952 #: js/formidable_admin.js:3939
     7952#: js/formidable_admin.js:3825
    79537953msgid "Break into rows"
    79547954msgstr ""
    79557955
    7956 #: js/formidable_admin.js:3949
     7956#: js/formidable_admin.js:3835
    79577957msgid "Row Layout"
    79587958msgstr ""
    79597959
    7960 #: js/formidable_admin.js:4203
     7960#: js/formidable_admin.js:4089
    79617961msgid "Enter number of columns for each field"
    79627962msgstr ""
    79637963
    7964 #: js/formidable_admin.js:4207
     7964#: js/formidable_admin.js:4093
    79657965msgid "Layouts are based on a 12-column grid system"
    79667966msgstr ""
    79677967
    7968 #: js/formidable_admin.js:4660
     7968#: js/formidable_admin.js:4546
    79697969msgid "Merge into row"
    79707970msgstr ""
    79717971
    7972 #: js/formidable_admin.js:5959
     7972#: js/formidable_admin.js:5845
    79737973msgid "Duplicate option value \"%s\" detected"
    79747974msgstr ""
    79757975
    7976 #: js/formidable_admin.js:8804
     7976#: js/formidable_admin.js:8690
    79777977msgid "Save and Reload"
    79787978msgstr ""
    79797979
    7980 #: js/formidable_admin.js:8973
     7980#: js/formidable_admin.js:8859
    79817981msgid "Unable to install template"
    79827982msgstr ""
    79837983
    7984 #: js/formidable_admin.js:9620
     7984#: js/formidable_admin.js:9506
    79857985msgid "Thank you for signing up!"
    79867986msgstr ""
  • formidable/trunk/readme.txt

    r3035860 r3036370  
    66Tested up to: 6.4.3
    77Requires PHP: 5.6
    8 Stable tag: 6.8.1
     8Stable tag: 6.8.2
    99
    1010The most advanced WordPress forms plugin. Go beyond contact forms with our drag and drop form builder for surveys, quizzes, and more.
     
    443443
    444444== Changelog ==
     445= 6.8.2 =
     446* Fix: The process of connecting an account to formidableforms.com would fail in some web browsers.
     447
    445448= 6.8.1 =
    446449* Security: A nonce check was missing on an action for dismissing a call to action on the global settings page.
Note: See TracChangeset for help on using the changeset viewer.