Changeset 1661595
- Timestamp:
- 05/21/2017 08:36:06 AM (9 years ago)
- Location:
- iflychat/trunk
- Files:
-
- 2 edited
-
iflychat.php (modified) (8 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
iflychat/trunk/iflychat.php
r1626721 r1661595 2 2 /** 3 3 * @package iflychat 4 * @version 4. 2.74 * @version 4.3.0 5 5 */ 6 6 /* … … 9 9 Description: One on one chat, Multiple chatrooms, Embedded chatrooms 10 10 Author: iFlyChat Team 11 Version: 4. 2.711 Version: 4.3.0 12 12 Author URI: https://iflychat.com/ 13 13 */ … … 21 21 22 22 if(!defined('DRUPALCHAT_EXTERNAL_HOST')){ 23 define('DRUPALCHAT_EXTERNAL_HOST', 'http://api 5.iflychat.com');23 define('DRUPALCHAT_EXTERNAL_HOST', 'http://api.iflychat.com'); 24 24 } 25 25 … … 29 29 30 30 if(!defined('DRUPALCHAT_EXTERNAL_A_HOST')){ 31 define('DRUPALCHAT_EXTERNAL_A_HOST', 'https://api 5.iflychat.com');31 define('DRUPALCHAT_EXTERNAL_A_HOST', 'https://api.iflychat.com'); 32 32 } 33 33 … … 40 40 } 41 41 42 define('IFLYCHAT_PLUGIN_VERSION', 'WP-4. 2.7');42 define('IFLYCHAT_PLUGIN_VERSION', 'WP-4.3.0'); 43 43 if (!defined('IFLYCHAT_DEBUG')) { 44 44 define('IFLYCHAT_DEBUG', false); … … 151 151 $current_user = wp_get_current_user(); 152 152 $admin_check = FALSE; 153 $user_data = array(); 153 154 if (iflychat_check_chat_admin()) { 154 155 $chat_role = "admin"; … … 232 233 { $current_user = wp_get_current_user(); 233 234 global $wp_version; 235 $data = array(); 234 236 if (iflychat_get_option('iflychat_api_key') == " ") { 235 237 return null; … … 554 556 PHP Version: <?php echo esc_html( phpversion() ); ?> 555 557 556 Wordpress Version: <?php echo esc_html( $wp_version ); ?>558 Wordpress Version: <?php global $wp_version; echo esc_html( $wp_version ); ?> 557 559 558 560 Active Theme: <?php -
iflychat/trunk/readme.txt
r1626721 r1661595 9 9 Tested up to: 4.7 10 10 11 Stable tag: 4. 2.711 Stable tag: 4.3.0 12 12 13 13 License: GPLv2 or later … … 141 141 == Changelog == 142 142 143 = 4.3.0 = 144 145 05/21/2017: Bug fix - declare global variables 146 143 147 = 4.2.7 = 144 148 … … 412 416 == Upgrade Notice == 413 417 418 = 4.3.0 = 419 After updating, go to iFlyChat Settings page and click on Update button. 420 414 421 = 4.2.5 = 415 422 After updating, go to iFlyChat Settings page and click on Update button. … … 436 443 After updating, go to iFlyChat Settings page and click on Update button. 437 444 438 = 3.0.7 = 439 After updating, go to iFlyChat Settings page and click on Update button. 440 441 445
Note: See TracChangeset
for help on using the changeset viewer.