Plugin Directory

Changeset 3207889


Ignore:
Timestamp:
12/14/2024 09:36:20 AM (16 months ago)
Author:
funnelforms
Message:

Security Issue Fix

Location:
funnelforms-free
Files:
517 added
4 edited

Legend:

Unmodified
Added
Removed
  • funnelforms-free/trunk/Funnelforms-free.php

    r3204698 r3207889  
    99Text Domain: funnelforms-free
    1010Domain Path: /languages/
    11 Version: 3.7.5
     11Version: 3.7.5.1
    1212*/
    1313
  • funnelforms-free/trunk/frontend/frontend.php

    r3204698 r3207889  
    17441744            die();
    17451745        } else { // SEND EMAIL
     1746            $format = true;
     1747            if(get_option('af2_custom_system_no_nl2br') == 'true') {
     1748                $format = false;
     1749            }
    17461750            // E-Mail
    17471751            //EMAIL TEXT FROM CF
     
    17541758              //  $messag = $mail_sendtext;
    17551759            //}
    1756             $mailtext =  nl2br($mailtext);
     1760            $mailtext = $format == true ? nl2br($mailtext) : $mailtext;
    17571761            if ($smtp_do === true || $smtp_do === 'true') {
    17581762                $cc_list = explode(',', $mailcc);
  • funnelforms-free/trunk/misc/constants.php

    r3204698 r3207889  
    146146
    147147// Other constants
    148 define( 'FNSF_AF2_FINAL_VERSION', '3.7.5' );
     148define( 'FNSF_AF2_FINAL_VERSION', '3.7.5.1' );
    149149define( 'FNSF_AF2_MENU_ICON_URL', plugins_url("/res/images/menu_icon.png", AF2F_PLUGIN) );
    150150define( 'FNSF_AF2_OPENAI_IMAGE_URL', plugins_url("/res/images/openai.png", AF2F_PLUGIN) );
  • funnelforms-free/trunk/readme.txt

    r3204698 r3207889  
    55Tested up to: 6.7.1
    66Requires PHP: 7.4
    7 Stable tag: 3.7.5
     7Stable tag: 3.7.5.1
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    246246== Changelog ==
    247247
     248= 3.7.5.1 - 14. December 2024 =
     249* Fixed Security Issue
     250* Minor Bugfixes
     251
    248252= 3.7.5 - 09. December 2024 =
    249253* Fixed Security Issue
Note: See TracChangeset for help on using the changeset viewer.