Plugin Directory

Changeset 3285743


Ignore:
Timestamp:
05/01/2025 04:10:44 PM (9 months ago)
Author:
bgermann
Message:

import version 15.0.8

Location:
cforms2/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • cforms2/trunk/cforms-help.php

    r2353696 r3285743  
    8989            </tr>
    9090            <tr>
    91                 <td class="ball" colspan="2"><?php _e('HTML: the <code>text paragraph</code> supports HTML. If you need actual &lt;, &gt; in your text please use the proper HTML entity.', 'cforms2'); ?></td>
    92             </tr>
    93             <tr>
    9491                <td class="ball" colspan="2"><?php _e('The above expression applies the custom class "<code>mytextclass</code>" <strong>AND</strong> the specific styles "<code>font-size:9x; font-weight:bold;</code>" to the paragraph.', 'cforms2'); ?></td>
    9592            </tr>
  • cforms2/trunk/cforms.php

    r3067955 r3285743  
    2121 * Description: cformsII is a customizable, flexible and powerful form plugin including simple spam protection, multi-step forms, role manager support and custom themes.
    2222 * Author: Oliver Seidel, Bastian Germann
    23  * Version: 15.0.7
     23 * Version: 15.0.8
     24 * Requires at least: 5.2
    2425 * Text Domain: cforms2
    2526 */
    2627namespace Cforms2;
    2728
    28 define('CFORMS2_VERSION', '15.0.7');
     29define('CFORMS2_VERSION', '15.0.8');
    2930
    3031// Debug message handling.
  • cforms2/trunk/lib_render.php

    r3067955 r3285743  
    767767
    768768
    769     $formcontent .= '<input type="hidden" name="cf_working' . $no . '" id="cf_working' . $no . '" value="<span>' . stripslashes(htmlspecialchars($cformsSettings['form' . $no]['cforms' . $no . '_working'])) . '</span>"/>' .
    770             '<input type="hidden" name="cf_failure' . $no . '" id="cf_failure' . $no . '" value="<span>' . stripslashes(htmlspecialchars($cformsSettings['form' . $no]['cforms' . $no . '_failure'])) . '</span>"/>' .
     769    $formcontent .= '<input type="hidden" name="cf_working' . $no . '" id="cf_working' . $no . '" value="' . stripslashes(htmlspecialchars($cformsSettings['form' . $no]['cforms' . $no . '_working'])) . '"/>' .
     770            '<input type="hidden" name="cf_failure' . $no . '" id="cf_failure' . $no . '" value="' . stripslashes(htmlspecialchars($cformsSettings['form' . $no]['cforms' . $no . '_failure'])) . '"/>' .
    771771            '<input type="hidden" name="cf_customerr' . $no . '" id="cf_customerr' . $no . '" value="' . htmlspecialchars($custom_error) . '"/>';
    772772
  • cforms2/trunk/readme.txt

    r3067955 r3285743  
    22Contributors: bgermann, cbacchini, codifex, nb000, wdfee, passoniate
    33Donate link: https://www.betterplace.org/projects/11633/donations/new
    4 Tags: contact form, contact, form, post, sidebar, multi step, api exposed, fork
    5 Requires at least: 5.2
    6 Tested up to: 6.5
     4Tags: form, contact, sidebar, multi step, fork
     5Tested up to: 6.8
    76Stable tag: trunk
    87License: GPLv3 or later
     
    109108== Upgrade Notice ==
    110109
    111 = 15.0.7 =
     110= 15.0.8 =
    112111The tracking database feature and its view are removed with cformsII 15.0+. Your data still exists in the database. Please have a look at CFDB plugin as a replacement.
    113112
    114113
    115114== Changelog ==
     115
     116= 15.0.8 =
     117
     118* bugfix:   remove unnecessary span elements from HTML attribute values
    116119
    117120= 15.0.7 =
Note: See TracChangeset for help on using the changeset viewer.