Plugin Directory

Changeset 3410550


Ignore:
Timestamp:
12/04/2025 08:04:56 AM (4 months ago)
Author:
pyrobd
Message:

Release 6.1.11

Location:
fluentform
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • fluentform/tags/6.1.11/app/Http/Controllers/IntegrationManagerController.php

    r3406804 r3410550  
    3838
    3939        // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Constructor, nonce verified in route handlers
    40         $formId = $this->app->request->get('form_id');
    41         if($formId) {
     40        if (isset($_REQUEST['form_id'])) {
    4241            // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Constructor, nonce verified in route handlers
    43             $formId = (int)$formId;
     42            $formId = (int)$_REQUEST['form_id'];
    4443            parent::__construct(
    4544                $this->settingsKey, $formId, true
  • fluentform/tags/6.1.11/app/Services/ConditionAssesor.php

    r3406804 r3410550  
    193193            $processedValue = preg_replace_callback('/{+(.*?)}/', function ($matches) use ($inputs, $form) {
    194194                $smartCode = $matches[1];
    195                
     195
    196196                if (false !== strpos($smartCode, 'inputs.')) {
    197197                    $fieldName = substr($smartCode, strlen('inputs.'));
     
    213213
    214214                // @todo Support general shortcodes in future
    215                 return '';
     215
     216                // Always return the original value if we don't have a match
     217                return $matches[0];
    216218            }, $value);
    217            
     219
    218220            return $processedValue;
    219221        } catch (\Exception $e) {
  • fluentform/tags/6.1.11/app/Services/FluentConversational/Classes/Converter/Converter.php

    r3408007 r3410550  
    427427                    'pen_size'         => ArrayHelper::get($field, 'settings.sign_pen_size', 2),
    428428                    'pad_height'       => ArrayHelper::get($field, 'settings.sign_pad_height', 200),
    429                     'instruction'      => self::getComponent()->replaceEditorSmartCodes(ArrayHelper::get($field, 'settings.sign_instruction', __('Sign Here', 'fluentform-signature')), $form),
     429                    'instruction'      => self::getComponent()->replaceEditorSmartCodes(ArrayHelper::get($field, 'settings.sign_instruction', __('Sign Here', 'fluentform')), $form),
    430430                ];
    431431                $question['multiple'] = false;
     
    980980            'autoPlaceholder'  => 'aggressive',
    981981            'formatOnDisplay'  => true,
     982            'validationNumberTypes' => [
     983                'MOBILE',
     984                'FIXED_LINE_OR_MOBILE',
     985                'FIXED_LINE',
     986                'TOLL_FREE',
     987            ]
    982988        ];
    983989       
  • fluentform/tags/6.1.11/fluentform.php

    r3408012 r3410550  
    33
    44/**
    5  * Plugin Name: Fluent Forms - Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder
     5 * Plugin Name: Fluent Forms
    66 * Description: Contact Form By Fluent Forms is the advanced Contact form plugin with drag and drop, multi column supported form builder plugin
    7  * Version: 6.1.10
     7 * Version: 6.1.11
    88 * Author: Contact Form - WPManageNinja LLC
    99 * Author URI: https://fluentforms.com
     
    1818define('FLUENTFORM_DIR_PATH', plugin_dir_path(__FILE__));
    1919define('FLUENTFORM_FRAMEWORK_UPGRADE', '4.3.22');
    20 defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '6.1.10');
     20defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '6.1.11');
    2121defined('FLUENTFORM_MINIMUM_PRO_VERSION') or define('FLUENTFORM_MINIMUM_PRO_VERSION', '6.0.0');
    2222
  • fluentform/tags/6.1.11/readme.txt

    r3408012 r3410550  
    33Tags: contact form, wp forms, forms, form builder, custom form
    44Requires at least: 6.4
    5 Tested up to: 6.8
     5Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 6.1.10
     7Stable tag: 6.1.11
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    439439== Changelog ==
    440440
     441= 6.1.11 (Date: December 4, 2025) =
     442- Fixes issue with saving showing invalid json
     443- Fixes default behavior of regex in advanced validation
     444
    441445= 6.1.10 (Date: December 2, 2025) =
    442446- Fix global settings save issue
  • fluentform/trunk/app/Http/Controllers/IntegrationManagerController.php

    r3406804 r3410550  
    3838
    3939        // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Constructor, nonce verified in route handlers
    40         $formId = $this->app->request->get('form_id');
    41         if($formId) {
     40        if (isset($_REQUEST['form_id'])) {
    4241            // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Constructor, nonce verified in route handlers
    43             $formId = (int)$formId;
     42            $formId = (int)$_REQUEST['form_id'];
    4443            parent::__construct(
    4544                $this->settingsKey, $formId, true
  • fluentform/trunk/app/Services/ConditionAssesor.php

    r3406804 r3410550  
    193193            $processedValue = preg_replace_callback('/{+(.*?)}/', function ($matches) use ($inputs, $form) {
    194194                $smartCode = $matches[1];
    195                
     195
    196196                if (false !== strpos($smartCode, 'inputs.')) {
    197197                    $fieldName = substr($smartCode, strlen('inputs.'));
     
    213213
    214214                // @todo Support general shortcodes in future
    215                 return '';
     215
     216                // Always return the original value if we don't have a match
     217                return $matches[0];
    216218            }, $value);
    217            
     219
    218220            return $processedValue;
    219221        } catch (\Exception $e) {
  • fluentform/trunk/app/Services/FluentConversational/Classes/Converter/Converter.php

    r3408007 r3410550  
    427427                    'pen_size'         => ArrayHelper::get($field, 'settings.sign_pen_size', 2),
    428428                    'pad_height'       => ArrayHelper::get($field, 'settings.sign_pad_height', 200),
    429                     'instruction'      => self::getComponent()->replaceEditorSmartCodes(ArrayHelper::get($field, 'settings.sign_instruction', __('Sign Here', 'fluentform-signature')), $form),
     429                    'instruction'      => self::getComponent()->replaceEditorSmartCodes(ArrayHelper::get($field, 'settings.sign_instruction', __('Sign Here', 'fluentform')), $form),
    430430                ];
    431431                $question['multiple'] = false;
     
    980980            'autoPlaceholder'  => 'aggressive',
    981981            'formatOnDisplay'  => true,
     982            'validationNumberTypes' => [
     983                'MOBILE',
     984                'FIXED_LINE_OR_MOBILE',
     985                'FIXED_LINE',
     986                'TOLL_FREE',
     987            ]
    982988        ];
    983989       
  • fluentform/trunk/fluentform.php

    r3408012 r3410550  
    33
    44/**
    5  * Plugin Name: Fluent Forms - Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder
     5 * Plugin Name: Fluent Forms
    66 * Description: Contact Form By Fluent Forms is the advanced Contact form plugin with drag and drop, multi column supported form builder plugin
    7  * Version: 6.1.10
     7 * Version: 6.1.11
    88 * Author: Contact Form - WPManageNinja LLC
    99 * Author URI: https://fluentforms.com
     
    1818define('FLUENTFORM_DIR_PATH', plugin_dir_path(__FILE__));
    1919define('FLUENTFORM_FRAMEWORK_UPGRADE', '4.3.22');
    20 defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '6.1.10');
     20defined('FLUENTFORM_VERSION') or define('FLUENTFORM_VERSION', '6.1.11');
    2121defined('FLUENTFORM_MINIMUM_PRO_VERSION') or define('FLUENTFORM_MINIMUM_PRO_VERSION', '6.0.0');
    2222
  • fluentform/trunk/readme.txt

    r3408012 r3410550  
    33Tags: contact form, wp forms, forms, form builder, custom form
    44Requires at least: 6.4
    5 Tested up to: 6.8
     5Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 6.1.10
     7Stable tag: 6.1.11
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    439439== Changelog ==
    440440
     441= 6.1.11 (Date: December 4, 2025) =
     442- Fixes issue with saving showing invalid json
     443- Fixes default behavior of regex in advanced validation
     444
    441445= 6.1.10 (Date: December 2, 2025) =
    442446- Fix global settings save issue
Note: See TracChangeset for help on using the changeset viewer.