Plugin Directory

Changeset 2650619


Ignore:
Timestamp:
12/29/2021 07:34:08 PM (4 years ago)
Author:
ruddernationdesigns
Message:

Version 1.3.6 - changed the room name in WordPress as it was conflicting causing it from loading the correct page.

Location:
tc-room-spy/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tc-room-spy/trunk/readme.txt

    r2586329 r2650619  
    55Tags: Tinychat room spy, Tinychat api, room spy, wordpress chat, buddypress chat, wordpress video chat
    66Requires at least: 5.0
    7 Tested up to: 5.8
    8 Stable tag: 1.3.5
     7Tested up to: 5.8.2
     8Stable tag: 1.3.6
    99License: GNU3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    9999* Clean up.
    100100
     101= 1.3.6 =
     102
     103* Change of room name as it was causing an issue, so it's gone from 'Tinychat API' to 'tinychat-api', Thanks to the person that pointed out an issue.
     104
    101105== Social Sites ==
    102106
  • tc-room-spy/trunk/room-spy.php

    r2586329 r2650619  
    77* Description: You can use this to search Tinychat profiles/rooms, This contains no CSS! So you may need to add your own custom CSS.
    88* Requires at least: WordPress 2.0
    9 * Tested up to: 5.8
    10 * Version: 1.3.5
     9* Tested up to: 5.8.2
     10* Version: 1.3.6
    1111* License: GNUv3
    1212* License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
    13 * Date: 21st August 2021
     13* Date: 29 December 2021
    1414*/
    15 define('COMPARE_VERSION', '1.3.4');
    16 defined( 'ABSPATH' ) or die( 'Is this the right room?' );
     15define('COMPARE_VERSION', '1.3.5');
     16defined( 'ABSPATH' ) or die( 'Hola' );
    1717register_activation_hook(__FILE__, 'rndtc_room_spy_install');
    1818function rndtc_room_spy_install() {
     
    2626            post_author, post_date, post_date_gmt, post_content, post_content_filtered, post_title, post_excerpt,  post_status, comment_status, ping_status, post_password, post_name, to_ping, pinged, post_modified, post_modified_gmt, post_parent, menu_order, post_type)
    2727            VALUES
    28             ('1', '$post_date', '$post_date_gmt', '[rndtc_room_spy_page]', '', 'tcroomspy', '', 'publish', 'closed', 'closed', '', 'Tinychat API', '', '', '$post_date', '$post_date_gmt', '0', '0', 'page')";
     28            ('1', '$post_date', '$post_date_gmt', '[rndtc_room_spy_page]', '', 'tcroomspy', '', 'publish', 'closed', 'closed', '', 'tinychat-api', '', '', '$post_date', '$post_date_gmt', '0', '0', 'page')";
    2929        $wpdb->query($sql);
    3030        $post_id = $wpdb->insert_id;
     
    7272        }
    7373?>
     74This allows you to view the Tinychat API for your room, it does not do a live view anymore.
    7475<form method="post">
    7576<input type="text" tabindex="1" name="room" placeholder="Tinychat room/user" id="roomname" list="roomdata" autofocus required/>
    7677<input type="hidden" name="chosen" value="true">
    77 <button type="submit" class="button">Spy</button></form><br>
     78<button type="submit" class="button">View</button></form><br>
    7879<?php
    7980       
     
    109110                        if (!empty($new["role"] == ""))
    110111                        {
    111                             echo '<br><strong>Membership: Demigod';
     112                            echo '<br><strong>Membership: Platinum';
    112113                        }
    113114                        else
Note: See TracChangeset for help on using the changeset viewer.