plugins/SpecialAdmin.php
changeset 898 c75754f5b1da
parent 885 a86a69394a95
child 915 91f4da84966f
equal deleted inserted replaced
897:f31c252c52c1 898:c75754f5b1da
  2302       {
  2302       {
  2303         document.getElementById('ajaxPageContainer').innerHTML = '<div class="error-box">Because of the lack of AJAX support, support for Internet Explorer versions less than 6.0 has been disabled in Runt. You can download and use Mozilla Firefox (or Seamonkey under Windows 95); both have an up-to-date standards-compliant rendering engine that has been tested thoroughly with Enano.</div>';
  2303         document.getElementById('ajaxPageContainer').innerHTML = '<div class="error-box">Because of the lack of AJAX support, support for Internet Explorer versions less than 6.0 has been disabled in Runt. You can download and use Mozilla Firefox (or Seamonkey under Windows 95); both have an up-to-date standards-compliant rendering engine that has been tested thoroughly with Enano.</div>';
  2304         return false;
  2304         return false;
  2305       }
  2305       }
  2306       document.getElementById('ajaxPageContainer').innerHTML = '<div class="wait-box">Loading page...</div>';
  2306       document.getElementById('ajaxPageContainer').innerHTML = '<div class="wait-box">Loading page...</div>';
  2307       ajaxGet('<?php echo scriptPath; ?>/ajax.php?title='+t+'&_mode=getpage&noheaders&auth=' + ENANO_SID, function() {
  2307       ajaxGet('<?php echo scriptPath; ?>/ajax.php?title='+t+'&_mode=getpage&noheaders&auth=' + ENANO_SID, function(ajax) {
  2308           if ( ajax.readyState == 4 && ajax.status == 200 ) {
  2308           if ( ajax.readyState == 4 && ajax.status == 200 ) {
  2309             var response = String(ajax.responseText + '');
  2309             var response = String(ajax.responseText + '');
  2310             if ( check_json_response(response) )
  2310             if ( check_json_response(response) )
  2311             {
  2311             {
  2312               response = parseJSON(response);
  2312               response = parseJSON(response);