Plugin Directory

Changeset 3447557


Ignore:
Timestamp:
01/27/2026 07:12:26 AM (2 months ago)
Author:
bytesweavers
Message:

Fix naming violations and security issues per directory guidelines

Location:
bytesweavers-ai-chat-master/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • bytesweavers-ai-chat-master/trunk/bytesweavers-ai-chat-master.php

    r3263240 r3447557  
    22
    33/**
    4  * Plugin Name: Bytesweavers AI Chat Master
     4 * Plugin Name: Bytesweavers AI Chat Master — Chatbot & Support Widget
    55 * Plugin URI: https://bytesweavers.tech/ai-chat-master
    66 * Description: A robust AI chat plugin for WordPress providing multi-model support.
  • bytesweavers-ai-chat-master/trunk/includes/class-admin-settings.php

    r3263240 r3447557  
    337337    public function api_key_notice() {
    338338        if ( ! isset( $_GET['settings-updated'] ) || ! isset( $_GET['page'] ) ||
    339             ! wp_verify_nonce( wp_create_nonce( 'aicw_settings_nonce' ), 'aicw_settings' ) ||
    340339            $_GET['page'] !== 'bytesweavers-ai-chat-master'
    341340        ) {
  • bytesweavers-ai-chat-master/trunk/readme.txt

    r3263262 r3447557  
    1 === AI Chatbot & Support Widget – Bytesweavers AI Chat Master ===
     1=== Bytesweavers AI Chat Master — Chatbot & Support Widget ===
    22Contributors: bytesweavers
    33Tags: ai chatbot, ai support, support bot, openai, ai chat widget
  • bytesweavers-ai-chat-master/trunk/templates/admin-settings.php

    r3263240 r3447557  
    1313// Verify nonce before processing form data
    1414$settings_updated = false;
    15 if ( isset( $_GET['settings-updated'] ) ) {
    16     if ( wp_verify_nonce( wp_create_nonce( 'aicw_settings_nonce' ), 'aicw_settings' ) ) {
    17         $settings_updated = true;
    18     }
     15if ( isset( $_GET['settings-updated'] ) && $_GET['settings-updated'] ) {
     16    $settings_updated = true;
    1917}
    2018?>
Note: See TracChangeset for help on using the changeset viewer.