Plugin Directory

Changeset 3160727


Ignore:
Timestamp:
10/01/2024 12:28:48 PM (15 months ago)
Author:
10web
Message:
  • Fixed: Textarea input issue.
Location:
form-maker/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • form-maker/trunk/form-maker.php

    r3156791 r3160727  
    44 * Plugin URI: https://10web.io/plugins/wordpress-form-maker/?utm_source=form_maker&utm_medium=free_plugin
    55 * Description: This plugin is a modern and advanced tool for easy and fast creating of a WordPress Form. The backend interface is intuitive and user friendly which allows users far from scripting and programming to create WordPress Forms.
    6  * Version: 1.15.28
     6 * Version: 1.15.29
    77 * Author: 10Web Form Builder Team
    88 * Author URI: https://10web.io/plugins/?utm_source=form_maker&utm_medium=free_plugin
     
    2727  public $front_urls = array();
    2828  public $main_file = '';
    29   public $plugin_version = '1.15.28';
    30   public $db_version = '2.15.28';
     29  public $plugin_version = '1.15.29';
     30  public $db_version = '2.15.29';
    3131  public $menu_postfix = '_fm';
    3232  public $plugin_postfix = '';
  • form-maker/trunk/frontend/views/form_maker.php

    r3156791 r3160727  
    508508            }
    509509
    510             $rep .= '<div class="' . esc_html(implode(' ', $classes)) . '" style="width: ' . intval($param['w_size']) . 'px;">
     510            $rep .= '<div class="' . esc_html(implode(' ', $classes)) . '" style="width: ' . esc_attr($param['w_size']) . 'px;">
    511511              <input type="text"
    512512                     class="wd-width-100"
     
    662662                      placeholder="' . $param['w_title']. '"
    663663                      data-value="' . esc_html($textarea_value) . '"
    664                       maxlength="' . intval($param['w_characters_limit']). '"
    665                       style="height: ' . intval($param['w_size_h']) . 'px;"
     664                      maxlength="' . esc_attr($param['w_characters_limit']). '"
     665                      style="height: ' . esc_attr($param['w_size_h']) . 'px;"
    666666                      ' . esc_html($param['attributes']) . '>' . esc_html($textarea_value) . '</textarea>';
    667667
  • form-maker/trunk/readme.txt

    r3156791 r3160727  
    44Requires at least: 4.6
    55Tested up to: 6.5
    6 Stable tag: 1.15.28
     6Stable tag: 1.15.29
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    558558
    559559== Changelog ==
     560= 1.15.29 =
     561* Fixed: Textarea input issue.
     562
    560563= 1.15.28 =
    561564* Fixed: Security issue.
Note: See TracChangeset for help on using the changeset viewer.