Plugin Directory

Changeset 3189250


Ignore:
Timestamp:
11/15/2024 06:52:13 AM (17 months ago)
Author:
rabilal
Message:

update readme.txt

Location:
js-support-ticket/tags/2.8.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • js-support-ticket/tags/2.8.8/modules/ticket/tpls/ticketdetail.php

    r3165739 r3189250  
    615615                                        }
    616616                                        ?>
    617                                     <td class=""><?php echo wp_kses_post($history->message); ?></td>
     617                                    <td class=""><?php
     618                                        if(in_array('agent',jssupportticket::$_active_addons) && JSSTincluder::getJSModel('agent')->isUserStaff()){ //agent
     619                                            echo wp_kses_post($history->message);
     620                                        }else{
     621                                            if($message == 'member'){ // message by the user, so show full message to user
     622                                                echo wp_kses_post($history->message);
     623                                            }else{
     624                                                if (jssupportticket::$_config['anonymous_name_on_ticket_reply'] == 1) {
     625                                                    $historymessage = $history->message;
     626                                                    echo wp_kses_post(preg_replace("/\([^)]+\)/","( ".__("Agent")." )",$historymessage));
     627                                                }else{
     628                                                    echo wp_kses_post($history->message);
     629                                                }
     630                                            }
     631                                        }                                           
     632                                    ?></td>
    618633                                  </tr>
    619634                                <?php } ?>
  • js-support-ticket/tags/2.8.8/readme.txt

    r3165739 r3189250  
    44Tags:  helpdesk,ticket system,support,tickets,support ticket,support desk,help,paid support,knowledgebase,faq, support plugin, ticket plugin, support system, ticketing system,monitor desk, help desk, IMAP, Email Piping, agents, js support ticket
    55Requires at least: 5.5
    6 Tested up to: 6.6.2
     6Tested up to: 6.7
    77Stable tag: 2.8.8
    88Requires PHP: 7.4
     
    721721= Where can I report bugs or contribute to the project? =
    722722Bugs can be reported either in our support forum or preferably on the (https://joomsky.com).
     723
     724= How can I report security bugs? =
     725You can report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team help validate, triage and handle any security vulnerabilities. [Report a security vulnerability.](https://patchstack.com/database/vdp/wp-job-portal)
Note: See TracChangeset for help on using the changeset viewer.