Changeset 1796121
- Timestamp:
- 01/02/2018 10:51:26 PM (8 years ago)
- Location:
- html5-chat/trunk
- Files:
-
- 2 edited
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
html5-chat/trunk/index.php
r1758825 r1796121 18 18 private static $adminPanel; 19 19 private static $code; 20 21 20 22 21 /* … … 37 36 $username = $user->user_login;; 38 37 $domain = get_site_url(null, '', ''); 39 $domain = parse_url($domain)['host']; 38 39 if (!$domain) { 40 $domain = get_home_url(null, '', ''); 41 } 42 if (!$domain) { 43 $domain = $_SERVER['SERVER_NAME']; 44 } 45 $domain = parse_url($domain)['host']; 40 46 $params = array ('a'=>'createAccountWP', 'username'=>$username, 'email' => $email, 'isAdmin' => $isAdmin, 'url'=>$domain); 41 47 $query = http_build_query ($params); -
html5-chat/trunk/readme.txt
r1768162 r1796121 4 4 Author URI: https://html5-chat.com 5 5 Tags: chat, tchat, webcam, cam, tchat,videochat 6 Requires at least: 4.5 7 Tested up to: 4.9 8 Stable tag: 4.7 6 Requires at least: 4.0 7 Tested up to: 4.9.1 9 8 License: GPLv2 or later 10 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 40 39 41 40 You can do that inside your config panel: you can inject some css, change the way html5 works 41 42 43 == Changelog == 44 fixed error on empty blog information 45 42 46 43 47 == Questions ==
Note: See TracChangeset
for help on using the changeset viewer.