UPDATES EasyBlog 6.0.14 Released! Joomla 5.x and PHP 8.x compatible now!

Helpdesk

Your Time
Our Time
Response Time
24 — 48 hours
We strive to provide the fastest ever response possible. However, we are not super beings.

Allow at least 24 — 48 hours
  Support is offline
It is currently off working hours and most of us aren't around

Rest assured that we will get back to you as soon as the day starts tomorrow!
  Support is offline

Email Notification

Kane · ·
10:56 PM Monday, 19 January 2015
None
I get the following code showing in email notifications since update to 3.9.19775. I thought maybe it was due to my customizing email template, however, I only edited the "email.blog.new.html.php" file and I received the same code showing on a Blog Pending template as well. I am left to assume it happened following the upgrade which occurred yesterday.

var req = false; function refreshSession() { req = false; if(window.XMLHttpRequest && !(window.ActiveXObject)) { try { req = new XMLHttpRequest(); } catch(e) { req = false; } // branch for IE/Windows ActiveX version } else if(window.ActiveXObject) { try { req = new ActiveXObject("Msxml2.XMLHTTP"); } catch(e) { try { req = new ActiveXObject("Microsoft.XMLHTTP"); } catch(e) { req = false; } } } if(req) { req.on-readystatechange = processReqChange; req.open("HEAD", "http://www.mysite.net/administrator/", true); req.send(); } } function processReqChange() { // only if req shows "loaded" if(req.readyState == 4) { // only if "OK" if(req.status == 200) { // TODO: think what can be done here } else { // TODO: think what can be done here //alert("There was a problem retrieving the XML data: " + req.statusText); } } } setInterval("refreshSession()", 300000);
The replies under this section are restricted to logged in users or users with an active subscription with us