Plugin Directory

Changeset 3261606


Ignore:
Timestamp:
03/25/2025 02:29:18 PM (12 months ago)
Author:
softcialdeveloper
Message:

stripcslashes responses and update support email.

Location:
smart-answer
Files:
49 added
2 edited

Legend:

Unmodified
Added
Removed
  • smart-answer/trunk/readme.txt

    r3255532 r3261606  
    66Requires at least: 4.0
    77Tested up to: 6.7.2
    8 Stable tag: 1.5
     8Stable tag: 1.6
    99Requires PHP: 7.4.33
    1010License: GPLv2 or later
     
    5656== Changelog ==
    5757
     58= 1.6 =
     59stripcslashes responses and update support email.
     60
    5861= 1.5 =
    59 Fix Pagination Issues
     62Fix Pagination Issues.
    6063
    6164= 1.4 =
  • smart-answer/trunk/smart-answers.php

    r3255532 r3261606  
    33 * Plugin Name: Smart Answer
    44 * Description: Create custom questions, deploy via shortcodes, manage responses, mark favorites or ban.
    5  * Version: 1.5
     5 * Version: 1.6
    66 * Author: @softcialdeveloper
    77 * License: GPL-2.0+
     
    194194
    195195            foreach ($responses as $response) {
    196                 $output .= '<p>&quot;<i class="response">' . esc_html($response->response_text) . "</i>&quot;";
     196                $output .= '<p>&quot;<i class="response">' . esc_html(stripcslashes($response->response_text)) . "</i>&quot;";
    197197                $output .= "<b> -" . esc_html($response->first_name) . "</b></p>" . $line;
    198198            }
Note: See TracChangeset for help on using the changeset viewer.