Plugin Directory

Changeset 3459020


Ignore:
Timestamp:
02/11/2026 02:00:58 PM (6 weeks ago)
Author:
codepeople
Message:

New version 5.4.4.1
Modifications in the changelogs.

Location:
calculated-fields-form
Files:
452 added
4 edited

Legend:

Unmodified
Added
Removed
  • calculated-fields-form/trunk/README.txt

    r3459003 r3459020  
    55Requires at least: 3.0.5
    66Tested up to: 6.9
    7 Stable tag: 5.4.4.0
     7Stable tag: 5.4.4.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    457457== Changelog ==
    458458
     459= 5.4.4.1 =
    459460= 5.4.4.0 =
    460461
     
    479480* Allows control over the WordPress nonce lifetime. To extend the nonce lifetime to 48 hours, simply define the following constant in the config.php file located in your WordPress root: define('CP_CALCULATEDFIELDSF_NONCE_LIFE', 172800); // 48 hours in seconds
    480481* Improves the iCal add-on (available in the Platinum plugin distribution).
    481 
    482 = 5.4.3.6 =
    483 
    484 * Updated the setVal method for Date/Time controls to support native Date objects.
    485 * Improved the initial landing page for a clearer and more intuitive user experience.
    486 * Enhanced menu accessibility to ensure better usability and navigation.
    487 * Fixed an issue affecting chart sets on DS fields (Developer and Platinum editions).
  • calculated-fields-form/trunk/changelog.txt

    r3459003 r3459020  
    11== Changelog ==
    22
     3= 5.4.4.1 =
    34= 5.4.4.0 =
    45
  • calculated-fields-form/trunk/cp_calculatedfieldsf_free.php

    r3459003 r3459020  
    44 * Plugin URI: https://cff.dwbooster.com
    55 * Description: Create forms with field values calculated based in other form field values.
    6  * Version: 5.4.4.0
     6 * Version: 5.4.4.1
    77 * Text Domain: calculated-fields-form
    88 * Author: CodePeople
     
    2626
    2727// Defining main constants.
    28 define( 'CP_CALCULATEDFIELDSF_VERSION', '5.4.4.0' );
     28define( 'CP_CALCULATEDFIELDSF_VERSION', '5.4.4.1' );
    2929define( 'CP_CALCULATEDFIELDSF_MAIN_FILE_PATH', __FILE__ );
    3030define( 'CP_CALCULATEDFIELDSF_BASE_PATH', dirname( CP_CALCULATEDFIELDSF_MAIN_FILE_PATH ) );
  • calculated-fields-form/trunk/js/fbuilder-pro-public.jquery.js

    r3459003 r3459020  
    1     $.fbuilder['version'] = '5.4.4.0';
     1    $.fbuilder['version'] = '5.4.4.1';
    22    $.fbuilder['controls'] = $.fbuilder['controls'] || {};
    33    $.fbuilder['forms'] = $.fbuilder['forms'] || {};
     
    121121    $.fbuilder['escapeSymbol'] = function( value ) // Escape the symbols used in regulars expressions
    122122    {
    123         return value.replace(/([\^\$\-\.\,\[\]\(\)\/\\\*\?\+\!\{\}])/g, "\\$1");
     123        return (typeof value == 'string') ? value.replace(/([\^\$\-\.\,\[\]\(\)\/\\\*\?\+\!\{\}])/g, "\\$1") : value;
    124124    };
    125125
Note: See TracChangeset for help on using the changeset viewer.