sentq Posted July 8, 2016 Share Posted July 8, 2016 did it? I can't ever recall seeing it before... it was like that many times, to be honest it wasn't forced in all forum sections, I don't really know what trigger/force it anyway 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted July 12, 2016 Share Posted July 12, 2016 i've just noticed the search box, top-left of the forum, doesn't work in Firefox, Chrome or Opera... but does in IE you can't enter search terms or click the advanced search link - I usually use the search link on the right, so i've never tried to use it before... anyone else seeing this ? http://prntscr.com/bs1fu7 0 Quote Link to comment Share on other sites More sharing options...
twhiting9275 Posted July 19, 2016 Author Share Posted July 19, 2016 Adding to this, it appears the 'advanced' editor (full WYSIWYG control) is just flat out broken, at least when it comes to editing posts. As well, the php bbcode needs updated. It seems to want to throw everything together... Example: <?php /* Client area login notification for WHMCS Developed by http://www.whmcsguru.com */ use Illuminate\Database\Capsule\Manager as Capsule; function hook_client_login_notify($vars) { $userid = $vars['userid']; send_login_notify($userid); } function send_login_notify($userid) { $ip = $_SERVER['REMOTE_ADDR'] ; $hostname = gethostbyaddr($ip); $userinfo = Capsule::table('tblclients')->select('firstname', 'lastname')->WHERE('id', $userid)->get(); //greet them foreach ($userinfo as $userrow) { $firstname = $userrow->firstname; $lastname = $userrow->lastname; } $command = "sendemail"; $adminuser = "YOUR ADMIN USERNAME HERE"; $values["customtype"] = "general"; $values["customsubject"] = "Account Login from $hostname"; $values["custommessage"] = "<p>Hello $firstname $lastname,<p>Your account was recently successfully accessed by a remote user. If this was not you, please do contact us immediately<p>IP Address: $ip<br/>Hostname: $hostname<br />"; $values["id"] = $userid; $results = localAPI($command, $values, $adminuser); } add_hook('ClientLogin', 1, 'hook_client_login_notify'); turns into: <?php /* Client area login notification for WHMCS Developed by http://www.whmcsguru.com */ use Illuminate\Database\Capsule\Manager as Capsule; function hook_client_login_notify($vars) { $userid = $vars['userid']; send_login_notify($userid); } function send_login_notify($userid) { $ip = $_SERVER['REMOTE_ADDR'] ; $hostname = gethostbyaddr($ip); $userinfo = Capsule::table('tblclients')->select('firstname', 'lastname')->WHERE('id', $userid)->get(); //greet them foreach ($userinfo as $userrow) { $firstname = $userrow->firstname; $lastname = $userrow->lastname; } $command = "sendemail"; $adminuser = "YOUR ADMIN USERNAME HERE"; $values["customtype"] = "general"; $values["customsubject"] = "Account Login from $hostname"; $values["custommessage"] = "<p>Hello $firstname $lastname,<p>Your account was recently successfully accessed by a remote user. If this was not you, please do contact us immediately<p>IP Address: $ip<br/>Hostname: $hostname<br />"; $values["id"] = $userid; $results = localAPI($command, $values, $adminuser); } add_hook('ClientLogin', 1, 'hook_client_login_notify'); Oh sure, NOW it does it right... Must just be in the full wysiwyg editor 0 Quote Link to comment Share on other sites More sharing options...
aus_dave Posted August 9, 2016 Share Posted August 9, 2016 ... anyone else seeing this ?I'm seeing the same thing on Safari, Firefox and Chrome on OSX El Capitan. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.