MyBB Community Forums

Full Version: Cannot Moderate..
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I select the threads and click to close/delete... and nothing happens:
[attachment=17359]
[attachment=17360]
[attachment=17358]
I assume it's the URL in your sig... remove this javascript you've added to your headerinclude:

<script type="text/javascript"> 
function selectCode(a)
{
   var e = a.parentNode.parentNode.getElementsByTagName('CODE')[0];
   if (window.getSelection)
   {
      var s = window.getSelection();
       if (s.setBaseAndExtent)
      {
         s.setBaseAndExtent(e, 0, e, e.innerText.length - 1);
      }
      else
      {
         var r = document.createRange();
         r.selectNodeContents(e);
         s.removeAllRanges();
         s.addRange(r);
      }
   }
   else if (document.getSelection)
   {
      var s = document.getSelection();
      var r = document.createRange();
      r.selectNodeContents(e);
      s.removeAllRanges();
      s.addRange(r);
   }
   else if (document.selection)
   {
      var r = document.body.createTextRange();
      r.moveToElementText(e);
      r.select();
   }
}
</script> 

See if it works then.
Didn't work..
Also.. Whats is this code for?
You haven't removed that code and it isn't anything to do with default MyBB, I assume it has something to do with one of your plugins.
I removed it and it didn't work. so I put it back..
Anything I can do?
It'll be a lot more helpful if stuff like this stays removed until it's actually solved, otherwise it gets very confusing.

Try removing that toolbar from the footer, and all the javascript it adds.
I removed the bar and the problem is solved.
Thank you guys.