Plugin Directory

Changeset 3048664


Ignore:
Timestamp:
03/10/2024 04:43:40 PM (2 years ago)
Author:
lorybot
Message:

v1.2

Location:
lorybot-ai-chatbot
Files:
29 added
4 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • lorybot-ai-chatbot/trunk/readme.txt

    r3048530 r3048664  
    33Tags: AI Chatbot, Chatbot plugin, Customer support chat, Artificial Intelligence Chat, WP ChatBot
    44Tested up to: 6.4.2
    5 Stable tag: 1.1
     5Stable tag: 1.2
    66Requires PHP: 5.3
    77License: GPLv3
     
    7373
    7474
    75  == Changelog ==
    7675
    77 - Fix some bug with sending multiple messages
    78 - Fix some bug with rendering messages from the server
     76== Changelog ==
     77= 1.2 - 03.10.2024 -
     78- Fixed: Vulnerability fix
     79- Fixed: some bug with sending multiple messages
     80- Fixed: some bug with rendering messages from the server
    7981- Other bug fixes and Improvements
  • lorybot-ai-chatbot/trunk/routes/activate.php

    r3048529 r3048664  
    3636    // Send POST request and handle the response
    3737    $response = wp_remote_post(get_option('lorybot_server_url') . "activate", $args);
    38     lorybot_handleResponse($response);
     38    lorybot_handleActivationResponse($response);
    3939
    4040    // Ensure 'lorybot_do_activation_redirect' option is set
     
    5050 * @param WP_Error|array $response The response or WP_Error on failure.
    5151 */
    52 function lorybot_handleResponse($response) {
     52function lorybot_handleActivationResponse($response) {
    5353    if (is_wp_error($response)) {
    5454        // Log error message
  • lorybot-ai-chatbot/trunk/routes/deactivate.php

    r3048493 r3048664  
    3434    // Send POST request and handle the response
    3535    $response = wp_remote_post($lorybot_server_url . "deactivate", $args);
    36     lorybot_handleResponse($response);
     36    lorybot_handleDeactivationResponse($response);
    3737}
    3838
     
    4242 * @param WP_Error|array $response The response or WP_Error on failure.
    4343 */
    44 function lorybot_handleResponse($response) {
     44function lorybot_handleDeactivationResponse($response) {
    4545    if (is_wp_error($response)) {
    4646        // Safely escape and output the error message
Note: See TracChangeset for help on using the changeset viewer.