Plugin Directory

Changeset 3401718


Ignore:
Timestamp:
11/24/2025 10:00:12 AM (4 months ago)
Author:
imsupporting
Message:

Fix empty widget URL issue, bump version to 5.0.0.3

Location:
imsupporting/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • imsupporting/trunk/imsupporting-admin.php

    r3401689 r3401718  
    3131$ims_dept = get_option('ims_dept');
    3232$ims_url = get_option('ims_url');
     33if (empty($ims_url)) {
     34    $ims_url = 'https://widget.chatcdn.imsupporting.com';
     35}
    3336$ims_bgcolor = get_option('ims_bgcolor');
    3437$ims_bgofflinecolor = get_option('ims_bgofflinecolor');
  • imsupporting/trunk/imsupporting-live-chat-plugin.php

    r3401710 r3401718  
    55Donate link: http://IMsupporting.com
    66Tags: live chat, live-chat, chat plugin, free live chat, live chat, chat, livechat, live chat software, live chat widget, chat widget, widget, chat online, online chat, mobile live chat, wordpress live chat, live support, customer support, woocommerce chat, chat plugin, plugin, wp chat, zopim
    7 Stable tag: 5.0.0.2
    8 Version: 5.0.0.2
     7Stable tag: 5.0.0.3
     8Version: 5.0.0.3
    99Tested up to: 6.8.3
    1010License: GPLv2
  • imsupporting/trunk/imsupporting-screen-display.php

    r3401689 r3401718  
    1010  $ims_dept = get_option('ims_dept', '');
    1111  $ims_url = get_option('ims_url', 'https://widget.chatcdn.imsupporting.com');
     12  if (empty($ims_url)) {
     13      $ims_url = 'https://widget.chatcdn.imsupporting.com';
     14  }
    1215  $ims_bgcolor = get_option('ims_bgcolor', '#199600');
    1316  $ims_bgofflinecolor = get_option('ims_bgofflinecolor', '#960000');
  • imsupporting/trunk/readme.txt

    r3401710 r3401718  
    55Tags: live chat, ai chat, hybrid chat, live support, customer support
    66Tested up to: 6.8.3
    7 Stable tag: 5.0.0.2
     7Stable tag: 5.0.0.3
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6161
    6262== Changelog ==
     63
     64= 5.0.0.3 =
     65* Fixed issue where widget URL could be empty on some installations
     66* Enforced default widget URL if not set
    6367
    6468= 5.0.0.2 =
Note: See TracChangeset for help on using the changeset viewer.