Changeset 3447557
- Timestamp:
- 01/27/2026 07:12:26 AM (2 months ago)
- Location:
- bytesweavers-ai-chat-master/trunk
- Files:
-
- 4 edited
-
bytesweavers-ai-chat-master.php (modified) (1 diff)
-
includes/class-admin-settings.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
templates/admin-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bytesweavers-ai-chat-master/trunk/bytesweavers-ai-chat-master.php
r3263240 r3447557 2 2 3 3 /** 4 * Plugin Name: Bytesweavers AI Chat Master 4 * Plugin Name: Bytesweavers AI Chat Master — Chatbot & Support Widget 5 5 * Plugin URI: https://bytesweavers.tech/ai-chat-master 6 6 * Description: A robust AI chat plugin for WordPress providing multi-model support. -
bytesweavers-ai-chat-master/trunk/includes/class-admin-settings.php
r3263240 r3447557 337 337 public function api_key_notice() { 338 338 if ( ! isset( $_GET['settings-updated'] ) || ! isset( $_GET['page'] ) || 339 ! wp_verify_nonce( wp_create_nonce( 'aicw_settings_nonce' ), 'aicw_settings' ) ||340 339 $_GET['page'] !== 'bytesweavers-ai-chat-master' 341 340 ) { -
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 === 2 2 Contributors: bytesweavers 3 3 Tags: ai chatbot, ai support, support bot, openai, ai chat widget -
bytesweavers-ai-chat-master/trunk/templates/admin-settings.php
r3263240 r3447557 13 13 // Verify nonce before processing form data 14 14 $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 } 15 if ( isset( $_GET['settings-updated'] ) && $_GET['settings-updated'] ) { 16 $settings_updated = true; 19 17 } 20 18 ?>
Note: See TracChangeset
for help on using the changeset viewer.