]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/load-scripts.php
WordPress 4.2.4-scripts
[autoinstalls/wordpress.git] / wp-admin / load-scripts.php
index 4d185ed53627751e83decc4f402a12a72f9b8867..d6ff5ad5a846ac23625b5c6327b8e862d65e91fa 100644 (file)
@@ -3,7 +3,7 @@
 /**
  * Disable error reporting
  *
- * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging
+ * Set this to error_reporting( -1 ) for debugging.
  */
 error_reporting(0);
 
@@ -119,7 +119,7 @@ if ( is_array( $load ) )
        $load = implode( '', $load );
 
 $load = preg_replace( '/[^a-z0-9,_-]+/i', '', $load );
-$load = explode(',', $load);
+$load = array_unique( explode( ',', $load ) );
 
 if ( empty($load) )
        exit;
@@ -143,7 +143,7 @@ foreach( $load as $handle ) {
        $out .= get_file($path) . "\n";
 }
 
-header('Content-Type: application/x-javascript; charset=UTF-8');
+header('Content-Type: application/javascript; charset=UTF-8');
 header('Expires: ' . gmdate( "D, d M Y H:i:s", time() + $expires_offset ) . ' GMT');
 header("Cache-Control: public, max-age=$expires_offset");