Changeset 3325070
- Timestamp:
- 07/09/2025 02:49:36 PM (5 months ago)
- Location:
- formidable
- Files:
-
- 10 edited
- 1 copied
-
tags/6.22.2 (copied) (copied from formidable/trunk)
-
tags/6.22.2/classes/helpers/FrmAppHelper.php (modified) (1 diff)
-
tags/6.22.2/classes/models/FrmDb.php (modified) (3 diffs)
-
tags/6.22.2/formidable.php (modified) (1 diff)
-
tags/6.22.2/languages/formidable.pot (modified) (2 diffs)
-
tags/6.22.2/readme.txt (modified) (2 diffs)
-
trunk/classes/helpers/FrmAppHelper.php (modified) (1 diff)
-
trunk/classes/models/FrmDb.php (modified) (3 diffs)
-
trunk/formidable.php (modified) (1 diff)
-
trunk/languages/formidable.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
formidable/tags/6.22.2/classes/helpers/FrmAppHelper.php
r3324974 r3325070 30 30 * @var string 31 31 */ 32 public static $plug_version = '6.22. 1';32 public static $plug_version = '6.22.2'; 33 33 34 34 /** -
formidable/tags/6.22.2/classes/models/FrmDb.php
r3324974 r3325070 254 254 * @param string $limit 255 255 * 256 * @return mixed256 * @return array 257 257 */ 258 258 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(); 260 261 } 261 262 … … 272 273 public static function get_row( $table, $where = array(), $fields = '*', $args = array() ) { 273 274 $args['limit'] = 1; 274 275 275 return self::get_var( $table, $where, $fields, $args, '', 'row' ); 276 276 } … … 286 286 * @param array $args 287 287 * 288 * @return mixed288 * @return array 289 289 */ 290 290 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(); 292 293 } 293 294 -
formidable/tags/6.22.2/formidable.php
r3324974 r3325070 3 3 * Plugin Name: Formidable Forms 4 4 * Description: Quickly and easily create drag-and-drop forms 5 * Version: 6.22. 15 * Version: 6.22.2 6 6 * Plugin URI: https://formidableforms.com/ 7 7 * Author URI: https://formidableforms.com/ -
formidable/tags/6.22.2/languages/formidable.pot
r3324974 r3325070 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Formidable Forms 6.22. 1\n"5 "Project-Id-Version: Formidable Forms 6.22.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-07-0 8T18:49:23+00:00\n"12 "POT-Creation-Date: 2025-07-09T14:06:28+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" -
formidable/tags/6.22.2/readme.txt
r3324974 r3325070 6 6 Tested up to: 6.8.1 7 7 Requires PHP: 7.0 8 Stable tag: 6.22. 18 Stable tag: 6.22.2 9 9 10 10 The most advanced WordPress forms plugin. Go beyond contact forms with our drag and drop form builder for surveys, quizzes, and more. … … 373 373 374 374 == 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 375 378 = 6.22.1 = 376 379 * 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 30 30 * @var string 31 31 */ 32 public static $plug_version = '6.22. 1';32 public static $plug_version = '6.22.2'; 33 33 34 34 /** -
formidable/trunk/classes/models/FrmDb.php
r3324974 r3325070 254 254 * @param string $limit 255 255 * 256 * @return mixed256 * @return array 257 257 */ 258 258 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(); 260 261 } 261 262 … … 272 273 public static function get_row( $table, $where = array(), $fields = '*', $args = array() ) { 273 274 $args['limit'] = 1; 274 275 275 return self::get_var( $table, $where, $fields, $args, '', 'row' ); 276 276 } … … 286 286 * @param array $args 287 287 * 288 * @return mixed288 * @return array 289 289 */ 290 290 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(); 292 293 } 293 294 -
formidable/trunk/formidable.php
r3324974 r3325070 3 3 * Plugin Name: Formidable Forms 4 4 * Description: Quickly and easily create drag-and-drop forms 5 * Version: 6.22. 15 * Version: 6.22.2 6 6 * Plugin URI: https://formidableforms.com/ 7 7 * Author URI: https://formidableforms.com/ -
formidable/trunk/languages/formidable.pot
r3324974 r3325070 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Formidable Forms 6.22. 1\n"5 "Project-Id-Version: Formidable Forms 6.22.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-07-0 8T18:49:23+00:00\n"12 "POT-Creation-Date: 2025-07-09T14:06:28+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" -
formidable/trunk/readme.txt
r3324974 r3325070 6 6 Tested up to: 6.8.1 7 7 Requires PHP: 7.0 8 Stable tag: 6.22. 18 Stable tag: 6.22.2 9 9 10 10 The most advanced WordPress forms plugin. Go beyond contact forms with our drag and drop form builder for surveys, quizzes, and more. … … 373 373 374 374 == 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 375 378 = 6.22.1 = 376 379 * 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.