Plugin Directory

Changeset 1975859


Ignore:
Timestamp:
11/17/2018 07:51:33 AM (7 years ago)
Author:
darklrd
Message:

Support older versions of PHP

Location:
iflychat/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • iflychat/trunk/iflychat.php

    r1974791 r1975859  
    22/**
    33 * @package iflychat
    4  * @version 4.5
     4 * @version 4.6.0
    55 */
    66/*
     
    99Description: One on one chat, Multiple chatrooms, Embedded chatrooms
    1010Author: iFlyChat Team
    11 Version: 4.5
     11Version: 4.6.0
    1212Author URI: https://iflychat.com/
    1313*/
     
    6060}
    6161
    62 define('IFLYCHAT_PLUGIN_VERSION', 'WP-4.5');
     62define('IFLYCHAT_PLUGIN_VERSION', 'WP-4.6.0');
    6363if (!defined('IFLYCHAT_DEBUG')) {
    6464  define('IFLYCHAT_DEBUG',          false);
     
    12031203function iflychat_chatcamp_check() {
    12041204    // return true;
    1205     if(!empty(iflychat_get_option('iflychat_app_id'))) {
    1206         if(strpos(iflychat_get_option('iflychat_app_id'), '-') === false && strlen(iflychat_get_option('iflychat_app_id')) == 19) {
     1205    $app_id = iflychat_get_option('iflychat_app_id');
     1206    if(!empty($app_id)) {
     1207        if(strpos($app_id, '-') === false && strlen($app_id) == 19) {
    12071208            return true;
    12081209        }
  • iflychat/trunk/readme.txt

    r1974791 r1975859  
    44Requires at least: 3.0
    55Tested up to: 4.9
    6 Stable tag: 4.5
     6Stable tag: 4.6.0
    77Tags: buddypress, chat, chat room, community, embed chat, friends, group chat, html5 chat, one to one chat, live chat, popup chat, mobile chat, multisite, wordpress chat, wp chat, ultimate member
    88License: GPLv2 or later
     
    138138== Changelog ==
    139139
     140= 4.6.0 =
     141
     14217/11/2018: Bug fix - Support older versions of PHP.
     143
    140144= 4.5 =
    141145
     
    429433== Upgrade Notice ==
    430434
     435= 4.6.0 =
     436After updating, go to iFlyChat Settings page and click on Update button.
     437
    431438= 4.5 =
    432439After updating, go to iFlyChat Settings page and click on Update button.
     
    453460After updating, go to iFlyChat Settings page and click on Update button.
    454461
    455 = 4.2.2 =
    456 After updating, go to iFlyChat Settings page and click on Update button.
    457 
    458 
     462
Note: See TracChangeset for help on using the changeset viewer.