Changeset 2618415
- Timestamp:
- 10/22/2021 02:28:13 PM (4 years ago)
- Location:
- roomlio-group-chat/trunk
- Files:
-
- 4 edited
-
includes/rml-admin-functions.php (modified) (1 diff)
-
includes/rml-public-functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
roomlio.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
roomlio-group-chat/trunk/includes/rml-admin-functions.php
r2611187 r2618415 188 188 */ 189 189 function roomlio_add_settings_plugin_link() { 190 add_filter( 'plugin_action_links_roomlio /roomlio.php', 'roomlio_settings_link' );190 add_filter( 'plugin_action_links_roomlio-group-chat/roomlio.php', 'roomlio_settings_link' ); 191 191 } 192 192 -
roomlio-group-chat/trunk/includes/rml-public-functions.php
r2614821 r2618415 14 14 'apiName' => 'register', 15 15 // phpcs:ignore 16 'userID' => rtrim( sanitize_text_field( base64_encode( site_url()) ), '=' ) . '-wpusr_' . strval( $current_user->ID ),16 'userID' => rtrim( base64_encode( site_url() ), '=' ) . '-wpusr_' . strval( $current_user->ID ), 17 17 'username' => $current_user->display_name, 18 18 'allowInsecureUsers' => true, -
roomlio-group-chat/trunk/readme.txt
r2614821 r2618415 4 4 Requires at least: 4.0 5 5 Tested up to: 5.8.1 6 Stable tag: 1.0. 16 Stable tag: 1.0.2 7 7 Requires PHP: 5.6.39 8 8 License: GPLv3 or later … … 71 71 == Changelog == 72 72 73 = 1.0.2 = 74 * Fix plugin action settings link. 75 73 76 = 1.0.1 = 74 77 * Scoped userID by domain. -
roomlio-group-chat/trunk/roomlio.php
r2614821 r2618415 3 3 * Plugin Name: Roomlio - Group Chat 4 4 * Description: Embed a Roomlio group chat room in your WordPress website in no time at all. Great for live video chat, community chat, and member only chat. 5 * Version: 1.0. 15 * Version: 1.0.2 6 6 * Author: Roomlio 7 7 * Author URI: https://roomlio.com/?ref=wordpress … … 47 47 * Console Log function just helps us debug plugin 48 48 * 49 * @param string $thing is the "thing" you want to log 49 * @param string $thing is the "thing" you want to log. 50 50 */ 51 51 function roomlio_log( $thing ) {
Note: See TracChangeset
for help on using the changeset viewer.