Comment 13 for bug 730547

Revision history for this message
Rob Peters (makitso) wrote :

Looks like its coming from admin_users.php appendChild?

    "fnDrawCallback": function() {
     // Our JSON responses include JavaScript as well as HTML. This does not get
     // executed (except for some versions of Firefox?). So, extract it, and add
     // it to its own DOM element
     jQuery('#list script').each(function() {
      var script=document.createElement('script');
      script.type='text/javascript';
      jQuery(script).text(jQuery(this).text());
      document.body.appendChild(script);
     }).remove();
    }