Plugin Directory

Changeset 3239573


Ignore:
Timestamp:
02/12/2025 05:47:13 PM (14 months ago)
Author:
ilachat
Message:

Fixed namespace conflict causing a parse error in PHP 7.4.

Location:
ilachat/trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • ilachat/trunk/ilachat.php

    r3232792 r3239573  
    1212 * Plugin URI: https://ila.chat
    1313 * Description: Integrate ILACHAT with WordPress to add AI-powered chatbot and live chat for seamless customer support and engagement.
    14  * Version: 1.0.0
     14 * Version: 1.0.1
    1515 * Requires at least: 6.2
    1616 * Requires PHP: 7.4.0
     
    4343
    4444// Define constants
    45 define('ILACHAT_VERSION', '1.0.0');
     45define('ILACHAT_VERSION', '1.0.1');
    4646define('ILACHAT_ROOT', __FILE__);
    4747define('ILACHAT_PATH', plugin_dir_path(ILACHAT_ROOT));
  • ilachat/trunk/readme.txt

    r3232806 r3239573  
    44Tags: chatbot, live chat, AI chatbot, customer support, AI assistant
    55Tested up to: 6.7
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77License: GPL v3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5050== Changelog ==
    5151
     52= 1.0.1 =
     53* Fixed namespace conflict causing a parse error in PHP 7.4.
     54* Updated `PublicClass` namespace from `Ilachat\WpPlugin\Public` to `Ilachat\WpPlugin\Frontend`.
     55
    5256= 1.0.0 =
    5357* Initial release.
     
    5862== Upgrade Notice ==
    5963
     64= 1.0.1 =
     65Fixes a critical namespace issue causing compatibility problems in PHP 7.4.
     66
    6067= 1.0.0 =
    6168First stable release.
  • ilachat/trunk/src/Plugin.php

    r3232792 r3239573  
    55use Ilachat\WpPlugin\Admin\Admin;
    66use Ilachat\WpPlugin\Admin\Connection;
    7 use Ilachat\WpPlugin\Public\PublicClass;
     7use Ilachat\WpPlugin\Frontend\PublicClass;
    88
    99if (! defined('ABSPATH')) {
Note: See TracChangeset for help on using the changeset viewer.