Changeset 2650619
- Timestamp:
- 12/29/2021 07:34:08 PM (4 years ago)
- Location:
- tc-room-spy/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
room-spy.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tc-room-spy/trunk/readme.txt
r2586329 r2650619 5 5 Tags: Tinychat room spy, Tinychat api, room spy, wordpress chat, buddypress chat, wordpress video chat 6 6 Requires at least: 5.0 7 Tested up to: 5.8 8 Stable tag: 1.3. 57 Tested up to: 5.8.2 8 Stable tag: 1.3.6 9 9 License: GNU3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 99 99 * Clean up. 100 100 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 101 105 == Social Sites == 102 106 -
tc-room-spy/trunk/room-spy.php
r2586329 r2650619 7 7 * Description: You can use this to search Tinychat profiles/rooms, This contains no CSS! So you may need to add your own custom CSS. 8 8 * Requires at least: WordPress 2.0 9 * Tested up to: 5.8 10 * Version: 1.3. 59 * Tested up to: 5.8.2 10 * Version: 1.3.6 11 11 * License: GNUv3 12 12 * License URI: https://www.gnu.org/licenses/gpl-3.0.en.html 13 * Date: 2 1st August202113 * Date: 29 December 2021 14 14 */ 15 define('COMPARE_VERSION', '1.3. 4');16 defined( 'ABSPATH' ) or die( ' Is this the right room?' );15 define('COMPARE_VERSION', '1.3.5'); 16 defined( 'ABSPATH' ) or die( 'Hola' ); 17 17 register_activation_hook(__FILE__, 'rndtc_room_spy_install'); 18 18 function rndtc_room_spy_install() { … … 26 26 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) 27 27 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')"; 29 29 $wpdb->query($sql); 30 30 $post_id = $wpdb->insert_id; … … 72 72 } 73 73 ?> 74 This allows you to view the Tinychat API for your room, it does not do a live view anymore. 74 75 <form method="post"> 75 76 <input type="text" tabindex="1" name="room" placeholder="Tinychat room/user" id="roomname" list="roomdata" autofocus required/> 76 77 <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> 78 79 <?php 79 80 … … 109 110 if (!empty($new["role"] == "")) 110 111 { 111 echo '<br><strong>Membership: Demigod';112 echo '<br><strong>Membership: Platinum'; 112 113 } 113 114 else
Note: See TracChangeset
for help on using the changeset viewer.