Plugin Directory

Changeset 2618415


Ignore:
Timestamp:
10/22/2021 02:28:13 PM (4 years ago)
Author:
roomlio
Message:

fix plugin action settings link

Location:
roomlio-group-chat/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • roomlio-group-chat/trunk/includes/rml-admin-functions.php

    r2611187 r2618415  
    188188 */
    189189function 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' );
    191191}
    192192
  • roomlio-group-chat/trunk/includes/rml-public-functions.php

    r2614821 r2618415  
    1414        'apiName'            => 'register',
    1515        // 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 ),
    1717        'username'           => $current_user->display_name,
    1818        'allowInsecureUsers' => true,
  • roomlio-group-chat/trunk/readme.txt

    r2614821 r2618415  
    44Requires at least: 4.0
    55Tested up to: 5.8.1
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77Requires PHP: 5.6.39
    88License: GPLv3 or later
     
    7171== Changelog ==
    7272
     73= 1.0.2 =
     74* Fix plugin action settings link.
     75
    7376= 1.0.1 =
    7477* Scoped userID by domain.
  • roomlio-group-chat/trunk/roomlio.php

    r2614821 r2618415  
    33 * Plugin Name: Roomlio - Group Chat
    44 * 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.1
     5 * Version: 1.0.2
    66 * Author: Roomlio
    77 * Author URI: https://roomlio.com/?ref=wordpress
     
    4747 * Console Log function just helps us debug plugin
    4848 *
    49  * @param string $thing is the "thing" you want to log
     49 * @param string $thing is the "thing" you want to log.
    5050 */
    5151function roomlio_log( $thing ) {
Note: See TracChangeset for help on using the changeset viewer.