Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion classes/controllers/FrmFormActionsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ public static function limit_by_type( $where ) {
/**
* Prevent WPML from filtering form actions based on the active language.
*
* @since x.x
* @since 6.20
*
* @param bool|null $null
* @param string $post_type
Expand Down
4 changes: 2 additions & 2 deletions classes/controllers/FrmFormsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ private static function load_direct_preview() {
* Since this form is added by default and every site uses the same key, it is too easy
* to guess this form.
*
* @since x.x
* @since 6.20
*
* @param string $form_key Form key.
* @return void
Expand Down Expand Up @@ -1924,7 +1924,7 @@ public static function process_bulk_form_actions( $errors ) {
/**
* Includes html that shows a message when the device is too small to use Formidable Forms admin pages.
*
* @since x.x
* @since 6.20
* @return void
*/
public static function include_device_too_small_message() {
Expand Down
4 changes: 2 additions & 2 deletions classes/helpers/FrmAppHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class FrmAppHelper {
*
* @var string
*/
public static $plug_version = '6.19';
public static $plug_version = '6.20';

/**
* @var bool
Expand Down Expand Up @@ -360,7 +360,7 @@ public static function is_admin_list_page( $page = 'formidable' ) {
}

/**
* @since x.x
* @since 6.20
*
* @return array<string>
*/
Expand Down
8 changes: 4 additions & 4 deletions classes/helpers/FrmFormsHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -1843,7 +1843,7 @@ public static function sanitize_layout_class( $classname ) {
/**
* Returns true if the preview should be blocked.
*
* @since x.x
* @since 6.20
*
* @param string $form_key
* @return bool
Expand All @@ -1853,7 +1853,7 @@ public static function should_block_preview( $form_key ) {
/**
* Filters whether the form preview should be blocked.
*
* @since x.x
* @since 6.20
*
* @param bool $should_block
* @param string $form_key
Expand Down Expand Up @@ -1888,12 +1888,12 @@ public static function actions_dropdown( $atts ) {
* If Pro is active but using a version earlier than v6.2 fallback to Pro for AJAX submit (so things don't all happen twice).
*
* @since 6.2
* @deprecated x.x
* @deprecated 6.20
*
* @return bool
*/
public static function should_use_pro_for_ajax_submit() {
_deprecated_function( __METHOD__, 'x.x' );
_deprecated_function( __METHOD__, '6.20' );
return false;
}
}
4 changes: 2 additions & 2 deletions classes/helpers/FrmSerializedStringParserHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function parse( $string ) {
/**
* Check if an unserialized value is valid.
*
* @since x.x
* @since 6.20
*
* @param mixed $value
* @return bool
Expand All @@ -63,7 +63,7 @@ private function serialized_value_is_valid( $value ) {
}

/**
* @since x.x
* @since 6.20
*
* @param string $string
* @return bool
Expand Down
4 changes: 2 additions & 2 deletions classes/helpers/FrmStylesHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ public static function output_vars( $settings, $defaults = array(), $vars = arra
/**
* Prevent invalid CSS keys from getting added to the generated CSS.
*
* @since x.x
* @since 6.20
*
* @param string $key
* @return bool
Expand All @@ -468,7 +468,7 @@ private static function css_key_is_valid( $key ) {
* Confirm a CSS value is valid.
* If it appears to contain JavaScript, it will not be added.
*
* @since x.x
* @since 6.20
*
* @param string $var
* @return bool
Expand Down
6 changes: 3 additions & 3 deletions classes/models/FrmFormTemplateApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ protected function skip_categories() {
* @return void
*/
public static function signup() {
_deprecated_function( __METHOD__, 'x.x' );
_deprecated_function( __METHOD__, '6.20' );
}

/**
* @return string
*/
public function get_free_license() {
_deprecated_function( __METHOD__, 'x.x' );
_deprecated_function( __METHOD__, '6.20' );
return '';
}

Expand All @@ -85,7 +85,7 @@ public function get_free_license() {
* @return bool
*/
public function has_free_access() {
_deprecated_function( __METHOD__, 'x.x' );
_deprecated_function( __METHOD__, '6.20' );
return true;
}
}
4 changes: 2 additions & 2 deletions classes/models/fields/FrmFieldGdpr.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ protected function before_replace_html_shortcodes( $args, $html ) {
/**
* Make sure the GDPR field is required even if the required setting is disabled.
*
* @since x.x
* @since 6.20
*
* @param array $args
* @return array
Expand All @@ -182,7 +182,7 @@ public function validate( $args ) {
/**
* Make sure the GDPR field is required even if the required setting is disabled.
*
* @since x.x
* @since 6.20
*
* @param bool $required
* @param array $field
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
die( 'You are not allowed to call this page directly.' );
}

_deprecated_file( __FILE__, 'x.x' );
_deprecated_file( __FILE__, '6.20' );
2 changes: 1 addition & 1 deletion classes/views/shared/small-device-message.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Small device message.
*
* @since x.x
* @since 6.20
* @package Formidable
*/

Expand Down
2 changes: 1 addition & 1 deletion formidable.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Formidable Forms
* Description: Quickly and easily create drag-and-drop forms
* Version: 6.19
* Version: 6.20
* Plugin URI: https://formidableforms.com/
* Author URI: https://formidableforms.com/
* Author: Strategy11 Form Builder Team
Expand Down
2 changes: 1 addition & 1 deletion js/formidable.js
Original file line number Diff line number Diff line change
Expand Up @@ -1659,7 +1659,7 @@ function frmFrontFormJS() {
/**
* Animates the scroll position of the document.
*
* @since x.x
* @since 6.20
*
* @param {number} start
* @param {number} end
Expand Down
Loading
Loading