Changeset 2545682
- Timestamp:
- 06/10/2021 02:42:02 PM (5 years ago)
- Location:
- atomchat/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (2 diffs)
-
atomchat.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
atomchat/trunk/README.txt
r2544359 r2545682 5 5 Requires PHP: 5.6 6 6 Tested up to: 5.7 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GNU General Public License v2.0 or later 9 9 … … 142 142 * Miscellaneous bug fixes 143 143 144 = 1.0.4 = 145 * Miscellaneous bug fixes 146 -
atomchat/trunk/atomchat.php
r2544359 r2545682 4 4 * Plugin Name: AtomChat 5 5 * Description: Voice, video & text chat for your WordPress site 6 * Version: 1.0. 36 * Version: 1.0.4 7 7 * Author: AtomChat 8 8 * Author URI: https://www.atomchat.com/ … … 17 17 $atomchat_license_key = get_option('atomchat_license_key'); 18 18 19 /* Start: To change the default plugin load order to avoid buddypress plugin conflict */ 20 if(is_plugin_active('buddypress/bp-loader.php')){ 21 $currentPluginLoadOrder = get_option('active_plugins'); 22 23 foreach ($currentPluginLoadOrder as $key => $value) { 24 if($value == 'atomchat/atomchat.php'){ 25 unset($currentPluginLoadOrder[$key]); 26 } 27 } 28 end($currentPluginLoadOrder); 29 $key = key($currentPluginLoadOrder); 30 $currentPluginLoadOrder[$key+1] = 'atomchat/atomchat.php'; 31 update_option('active_plugins', $currentPluginLoadOrder); 32 } 33 /* End: To change the default plugin load order to avoid buddypress plugin conflict */ 19 34 20 35 /**
Note: See TracChangeset
for help on using the changeset viewer.