Plugin Directory

Changeset 3307334


Ignore:
Timestamp:
06/06/2025 03:27:55 AM (10 months ago)
Author:
GhozyLab
Message:

Release new version

Location:
contact-form-lite/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • contact-form-lite/trunk/easy-contact-form.php

    r3244159 r3307334  
    77Text Domain: contact-form-lite
    88Domain Path: /languages
    9 Version: 1.1.27
     9Version: 1.1.29
    1010Author URI: https://ghozylab.com/plugins/
    1111*/
     
    2727// Plugin Version
    2828if ( ! defined( 'ECF_VERSION' ) ) {
    29     define( 'ECF_VERSION', '1.1.27' );
     29    define( 'ECF_VERSION', '1.1.29' );
    3030}
    3131
  • contact-form-lite/trunk/inc/ecf-template.php

    r3057820 r3307334  
    278278
    279279            if ( isset( $v[ 'placeholder' ] ) && trim( $v[ 'placeholder' ] ) != '' ) {
    280                 $isplchldr = 'placeholder="'.$v[ 'placeholder' ].'"';
     280                $isplchldr = 'placeholder="'.esc_html( $v[ 'placeholder' ] ).'"';
    281281            } else {
    282282                $isplchldr = null;
     
    339339
    340340                    $avname = $avname + 1;
    341                     echo '<input data-type="'.esc_attr( $v[ 'field_type' ] ).'" data-label="'.esc_attr( $v[ 'label' ] ).'" id="'.esc_attr( $v[ 'field_type' ].$k ).'" type="text" name="'.esc_attr( $v[ 'field_type' ].$k ).'" '.esc_attr( $isplchldr ).'/>';
     341                    echo '<input data-type="'.esc_attr( $v[ 'field_type' ] ).'" data-label="'.esc_attr( $v[ 'label' ] ).'" id="'.esc_attr( $v[ 'field_type' ].$k ).'" type="text" name="'.esc_attr( $v[ 'field_type' ].$k ).'" '.$isplchldr.'/>';
    342342
    343343                    break;
     
    345345                case 'text':
    346346
    347                     echo '<input data-type="'.esc_attr( $v[ 'field_type' ] ).'" data-label="'.esc_attr( $v[ 'label' ] ).'" id="'.esc_attr( $v[ 'field_type' ].$k ).'" type="text" name="'.esc_attr( $v[ 'field_type' ].$k ).'" '.esc_attr( $isplchldr ).'/>';
     347                    echo '<input data-type="'.esc_attr( $v[ 'field_type' ] ).'" data-label="'.esc_attr( $v[ 'label' ] ).'" id="'.esc_attr( $v[ 'field_type' ].$k ).'" type="text" name="'.esc_attr( $v[ 'field_type' ].$k ).'" '.$isplchldr.'/>';
    348348
    349349                    break;
     
    352352
    353353                    $avemail = $avemail + 1;
    354                     echo '<input data-type="'.esc_attr( $v[ 'field_type' ] ).'" data-label="'.esc_attr( $v[ 'label' ] ).'" id="'.esc_attr( $v[ 'field_type' ].$k ).'" type="text" name="'.esc_attr( $v[ 'field_type' ].$k ).'" '.esc_attr( $isplchldr ).'/>';
     354                    echo '<input data-type="'.esc_attr( $v[ 'field_type' ] ).'" data-label="'.esc_attr( $v[ 'label' ] ).'" id="'.esc_attr( $v[ 'field_type' ].$k ).'" type="text" name="'.esc_attr( $v[ 'field_type' ].$k ).'" '.$isplchldr.'/>';
    355355
    356356                    break;
     
    364364                case 'paragraph':
    365365
    366                     echo '<textarea data-type="'.esc_attr( $v[ 'field_type' ] ).'" data-label="'.esc_attr( $v[ 'label' ] ).'" id="'.esc_attr( $v[ 'field_type' ].$k ).'" name="'.esc_attr( $v[ 'field_type' ].$k ).'" rows="7" '.esc_attr( $isplchldr ).'></textarea>';
     366                    echo '<textarea data-type="'.esc_attr( $v[ 'field_type' ] ).'" data-label="'.esc_attr( $v[ 'label' ] ).'" id="'.esc_attr( $v[ 'field_type' ].$k ).'" name="'.esc_attr( $v[ 'field_type' ].$k ).'" rows="7" '.$isplchldr.'></textarea>';
    367367
    368368                    break;
     
    371371
    372372                    $avmsg = $avmsg + 1;
    373                     echo '<textarea data-type="'.esc_attr( $v[ 'field_type' ] ).'" data-label="'.esc_attr( $v[ 'label' ] ).'" id="'.esc_attr( $v[ 'field_type' ].$k ).'" name="'.esc_attr( $v[ 'field_type' ].$k ).'" rows="7" '.esc_attr( $isplchldr ).'></textarea>';
     373                    echo '<textarea data-type="'.esc_attr( $v[ 'field_type' ] ).'" data-label="'.esc_attr( $v[ 'label' ] ).'" id="'.esc_attr( $v[ 'field_type' ].$k ).'" name="'.esc_attr( $v[ 'field_type' ].$k ).'" rows="7" '.$isplchldr.'></textarea>';
    374374
    375375                    break;
  • contact-form-lite/trunk/inc/js/formbuilder/formbuilder.js

    r3057820 r3307334  
    11271127  Formbuilder.registerField('text', {
    11281128    order: 4,
    1129     view: "<input placeholder='<%= rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' type='text' class='rf-size-<%= rf.get(Formbuilder.options.mappings.SIZE) %>' data-icon='<%= rf.get(Formbuilder.options.mappings.ICONS) %>' />",
     1129    view: "<input placeholder='<%- rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' type='text' class='rf-size-<%- rf.get(Formbuilder.options.mappings.SIZE) %>' data-icon='<%- rf.get(Formbuilder.options.mappings.ICONS) %>' />",
    11301130    edit: "<%= Formbuilder.templates['edit/icon']() %>",
    11311131    addButton: "<span class='symbol'><span class='fa fa-font'></span></span> Text",
     
    11621162  Formbuilder.registerField('name', {
    11631163    order: 0,
    1164     view: "<input placeholder='<%= rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' type='text' class='rf-size-<%= rf.get(Formbuilder.options.mappings.SIZE) %>' data-icon='<%= rf.get(Formbuilder.options.mappings.ICONS) %>' />",
     1164    view: "<input placeholder='<%- rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' type='text' class='rf-size-<%- rf.get(Formbuilder.options.mappings.SIZE) %>' data-icon='<%- rf.get(Formbuilder.options.mappings.ICONS) %>' />",
    11651165    edit: "<%= Formbuilder.templates['edit/icon']() %>",
    11661166    addButton: "<span class='symbol'><span class='fa fa-user'></span></span> Name",
     
    11971197  Formbuilder.registerField('date', {
    11981198    order: 28,
    1199     view: "<input placeholder='<%= rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' type='text' class='rf-size-<%= rf.get(Formbuilder.options.mappings.SIZE) %>' data-frmt='<%= rf.get(Formbuilder.options.mappings.DATEFORMAT) %>' data-icon='<%= rf.get(Formbuilder.options.mappings.ICONS) %>' /><div style='padding-top: 12px; padding-bottom: 7px; font-size: 12px; color: #F40043;'><i>This feature only available in Pro Version</i></div>",
     1199    view: "<input placeholder='<%- rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' type='text' class='rf-size-<%- rf.get(Formbuilder.options.mappings.SIZE) %>' data-frmt='<%- rf.get(Formbuilder.options.mappings.DATEFORMAT) %>' data-icon='<%= rf.get(Formbuilder.options.mappings.ICONS) %>' /><div style='padding-top: 12px; padding-bottom: 7px; font-size: 12px; color: #F40043;'><i>This feature only available in Pro Version</i></div>",
    12001200    edit: "<%= Formbuilder.templates['edit/date']() %>",
    12011201    addButton: "<span class='symbol'><span class='fa fa-calendar'></span></span> Date",
     
    12161216  Formbuilder.registerField('daterange', {
    12171217    order: 29,
    1218     view: "<input placeholder='<%= rf.get(Formbuilder.options.mappings.DATESTART) %>' type='text' class='rf-size-<%= rf.get(Formbuilder.options.mappings.SIZE) %>' data-frmt='<%= rf.get(Formbuilder.options.mappings.DATEFORMAT) %>' data-icon='<%= rf.get(Formbuilder.options.mappings.ICONS) %>' /><input placeholder='<%= rf.get(Formbuilder.options.mappings.DATEFINISH) %>' type='text' class='rf-size-<%= rf.get(Formbuilder.options.mappings.SIZE) %>' data-frmt='<%= rf.get(Formbuilder.options.mappings.DATEFORMAT) %>' data-icon='<%= rf.get(Formbuilder.options.mappings.ICONS) %>' /><div style='padding-top: 12px; padding-bottom: 7px; font-size: 12px; color: #F40043;'><i>This feature only available in Pro Version</i></div>",
     1218    view: "<input placeholder='<%- rf.get(Formbuilder.options.mappings.DATESTART) %>' type='text' class='rf-size-<%- rf.get(Formbuilder.options.mappings.SIZE) %>' data-frmt='<%= rf.get(Formbuilder.options.mappings.DATEFORMAT) %>' data-icon='<%= rf.get(Formbuilder.options.mappings.ICONS) %>' /><input placeholder='<%- rf.get(Formbuilder.options.mappings.DATEFINISH) %>' type='text' class='rf-size-<%- rf.get(Formbuilder.options.mappings.SIZE) %>' data-frmt='<%= rf.get(Formbuilder.options.mappings.DATEFORMAT) %>' data-icon='<%= rf.get(Formbuilder.options.mappings.ICONS) %>' /><div style='padding-top: 12px; padding-bottom: 7px; font-size: 12px; color: #F40043;'><i>This feature only available in Pro Version</i></div>",
    12191219    edit: "<%= Formbuilder.templates['edit/daterange']() %>",
    12201220    addButton: "<span class='symbol'><span class='fa fa-calendar'></span></span> Date Range",
     
    12761276  Formbuilder.registerField('email', {
    12771277    order: 3,
    1278     view: "<input placeholder='<%= rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' type='text' class='rf-size-<%= rf.get(Formbuilder.options.mappings.SIZE) %>' data-icon='<%= rf.get(Formbuilder.options.mappings.ICONS) %>' />",
     1278    view: "<input placeholder='<%- rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' type='text' class='rf-size-<%- rf.get(Formbuilder.options.mappings.SIZE) %>' data-icon='<%- rf.get(Formbuilder.options.mappings.ICONS) %>' />",
    12791279    edit: "<%= Formbuilder.templates['edit/icon']() %>",
    12801280    addButton: "<span class='symbol'><span class='fa fa-envelope-o'></span></span> Email",
     
    12941294  Formbuilder.registerField('website', {
    12951295    order: 35,
    1296     view: "<input placeholder='<%= rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' placeholder='https://' type='text' class='rf-size-<%= rf.get(Formbuilder.options.mappings.SIZE) %>' data-icon='<%= rf.get(Formbuilder.options.mappings.ICONS) %>' />",
     1296    view: "<input placeholder='<%- rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' placeholder='https://' type='text' class='rf-size-<%- rf.get(Formbuilder.options.mappings.SIZE) %>' data-icon='<%- rf.get(Formbuilder.options.mappings.ICONS) %>' />",
    12971297    edit: "<%= Formbuilder.templates['edit/icon']() %>",
    12981298    addButton: "<span class=\"symbol\"><span class=\"fa fa-link\"></span></span> Website",
     
    13111311  Formbuilder.registerField('paragraph', {
    13121312    order: 5,
    1313     view: "<textarea placeholder='<%= rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' class='rf-size-<%= rf.get(Formbuilder.options.mappings.SIZE) %>' data-icon='<%= rf.get(Formbuilder.options.mappings.ICONS) %>'></textarea>",
     1313    view: "<textarea placeholder='<%- rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' class='rf-size-<%- rf.get(Formbuilder.options.mappings.SIZE) %>' data-icon='<%- rf.get(Formbuilder.options.mappings.ICONS) %>'></textarea>",
    13141314    edit: "<%= Formbuilder.templates['edit/icon']() %>",
    13151315    addButton: "<span class=\"symbol\"><span class=\"fa fa-comment\"></span></span> Textarea",
     
    13281328  Formbuilder.registerField('message', {
    13291329    order: 5,
    1330     view: "<textarea placeholder='<%= rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' class='rf-size-<%= rf.get(Formbuilder.options.mappings.SIZE) %>' data-icon='<%= rf.get(Formbuilder.options.mappings.ICONS) %>'></textarea>",
     1330    view: "<textarea placeholder='<%- rf.get(Formbuilder.options.mappings.PLACEHOLDER) %>' class='rf-size-<%- rf.get(Formbuilder.options.mappings.SIZE) %>' data-icon='<%- rf.get(Formbuilder.options.mappings.ICONS) %>'></textarea>",
    13311331    edit: "<%= Formbuilder.templates['edit/icon']() %>",
    13321332    addButton: "<span class=\"symbol\"><span class=\"fa fa-comment\"></span></span> Message",
  • contact-form-lite/trunk/readme.txt

    r3276952 r3307334  
    55Requires at least: 3.3
    66Tested up to: 6.8
    7 Stable tag: 1.1.27
     7Stable tag: 1.1.29
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    199199== Upgrade Notice ==
    200200
    201 = 1.1.27 =
     201= 1.1.29 =
    202202IMPORTANT! SECURITY BUGS FIX, PLEASE UPDATE NOW!
    203203
    204204== Changelog ==
     205
     206= 1.1.29 =
     207* Fixed : IMPORTANT! SECURITY BUGS FIX, PLEASE UPDATE NOW!
    205208
    206209= 1.1.27 =
Note: See TracChangeset for help on using the changeset viewer.