Plugin Directory

Changeset 3325070


Ignore:
Timestamp:
07/09/2025 02:49:36 PM (5 months ago)
Author:
formidableforms
Message:

Update to version 6.22.2 from GitHub

Location:
formidable
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • formidable/tags/6.22.2/classes/helpers/FrmAppHelper.php

    r3324974 r3325070  
    3030     * @var string
    3131     */
    32     public static $plug_version = '6.22.1';
     32    public static $plug_version = '6.22.2';
    3333
    3434    /**
  • formidable/tags/6.22.2/classes/models/FrmDb.php

    r3324974 r3325070  
    254254     * @param string $limit
    255255     *
    256      * @return mixed
     256     * @return array
    257257     */
    258258    public static function get_col( $table, $where = array(), $field = 'id', $args = array(), $limit = '' ) {
    259         return self::get_var( $table, $where, $field, $args, $limit, 'col' );
     259        $columns = self::get_var( $table, $where, $field, $args, $limit, 'col' );
     260        return is_array( $columns ) ? $columns : array();
    260261    }
    261262
     
    272273    public static function get_row( $table, $where = array(), $fields = '*', $args = array() ) {
    273274        $args['limit'] = 1;
    274 
    275275        return self::get_var( $table, $where, $fields, $args, '', 'row' );
    276276    }
     
    286286     * @param array  $args
    287287     *
    288      * @return mixed
     288     * @return array
    289289     */
    290290    public static function get_results( $table, $where = array(), $fields = '*', $args = array() ) {
    291         return self::get_var( $table, $where, $fields, $args, '', 'results' );
     291        $results = self::get_var( $table, $where, $fields, $args, '', 'results' );
     292        return is_array( $results ) ? $results : array();
    292293    }
    293294
  • formidable/tags/6.22.2/formidable.php

    r3324974 r3325070  
    33 * Plugin Name: Formidable Forms
    44 * Description: Quickly and easily create drag-and-drop forms
    5  * Version: 6.22.1
     5 * Version: 6.22.2
    66 * Plugin URI: https://formidableforms.com/
    77 * Author URI: https://formidableforms.com/
  • formidable/tags/6.22.2/languages/formidable.pot

    r3324974 r3325070  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Formidable Forms 6.22.1\n"
     5"Project-Id-Version: Formidable Forms 6.22.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: 2025-07-08T18:49:23+00:00\n"
     12"POT-Creation-Date: 2025-07-09T14:06:28+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
  • formidable/tags/6.22.2/readme.txt

    r3324974 r3325070  
    66Tested up to: 6.8.1
    77Requires PHP: 7.0
    8 Stable tag: 6.22.1
     8Stable tag: 6.22.2
    99
    1010The most advanced WordPress forms plugin. Go beyond contact forms with our drag and drop form builder for surveys, quizzes, and more.
     
    373373
    374374== Changelog ==
     375= 6.22.2 =
     376* Fix: A fatal error on some websites would occur because of an issue with incorrect cached data types.
     377
    375378= 6.22.1 =
    376379* New: Stripe, Square, PayPal, and Authorize.Net settings have now been moved to a new Payments section in Global Settings.
  • formidable/trunk/classes/helpers/FrmAppHelper.php

    r3324974 r3325070  
    3030     * @var string
    3131     */
    32     public static $plug_version = '6.22.1';
     32    public static $plug_version = '6.22.2';
    3333
    3434    /**
  • formidable/trunk/classes/models/FrmDb.php

    r3324974 r3325070  
    254254     * @param string $limit
    255255     *
    256      * @return mixed
     256     * @return array
    257257     */
    258258    public static function get_col( $table, $where = array(), $field = 'id', $args = array(), $limit = '' ) {
    259         return self::get_var( $table, $where, $field, $args, $limit, 'col' );
     259        $columns = self::get_var( $table, $where, $field, $args, $limit, 'col' );
     260        return is_array( $columns ) ? $columns : array();
    260261    }
    261262
     
    272273    public static function get_row( $table, $where = array(), $fields = '*', $args = array() ) {
    273274        $args['limit'] = 1;
    274 
    275275        return self::get_var( $table, $where, $fields, $args, '', 'row' );
    276276    }
     
    286286     * @param array  $args
    287287     *
    288      * @return mixed
     288     * @return array
    289289     */
    290290    public static function get_results( $table, $where = array(), $fields = '*', $args = array() ) {
    291         return self::get_var( $table, $where, $fields, $args, '', 'results' );
     291        $results = self::get_var( $table, $where, $fields, $args, '', 'results' );
     292        return is_array( $results ) ? $results : array();
    292293    }
    293294
  • formidable/trunk/formidable.php

    r3324974 r3325070  
    33 * Plugin Name: Formidable Forms
    44 * Description: Quickly and easily create drag-and-drop forms
    5  * Version: 6.22.1
     5 * Version: 6.22.2
    66 * Plugin URI: https://formidableforms.com/
    77 * Author URI: https://formidableforms.com/
  • formidable/trunk/languages/formidable.pot

    r3324974 r3325070  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Formidable Forms 6.22.1\n"
     5"Project-Id-Version: Formidable Forms 6.22.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: 2025-07-08T18:49:23+00:00\n"
     12"POT-Creation-Date: 2025-07-09T14:06:28+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
  • formidable/trunk/readme.txt

    r3324974 r3325070  
    66Tested up to: 6.8.1
    77Requires PHP: 7.0
    8 Stable tag: 6.22.1
     8Stable tag: 6.22.2
    99
    1010The most advanced WordPress forms plugin. Go beyond contact forms with our drag and drop form builder for surveys, quizzes, and more.
     
    373373
    374374== Changelog ==
     375= 6.22.2 =
     376* Fix: A fatal error on some websites would occur because of an issue with incorrect cached data types.
     377
    375378= 6.22.1 =
    376379* New: Stripe, Square, PayPal, and Authorize.Net settings have now been moved to a new Payments section in Global Settings.
Note: See TracChangeset for help on using the changeset viewer.