Make WordPress Core


Ignore:
Timestamp:
07/29/2013 05:57:04 PM (12 years ago)
Author:
nacin
Message:

Unique load array in load-scripts and load-styles.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/load-scripts.php

    r23074 r24868  
    120120
    121121$load = preg_replace( '/[^a-z0-9,_-]+/i', '', $load );
    122 $load = explode(',', $load);
     122$load = array_unique( explode( ',', $load ) );
    123123
    124124if ( empty($load) )
Note: See TracChangeset for help on using the changeset viewer.