Make WordPress Core


Ignore:
Timestamp:
09/08/2015 07:31:52 PM (10 years ago)
Author:
wonderboymusic
Message:

Multisite: Don't allow sites to be created with the following reserved slugs: wp-admin, wp-content, wp-includes

Props austinginder.
Fixes #33615.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ms-functions.php

    r33184 r33952  
    623623             * @param array $subdirectory_reserved_names Array of reserved names.
    624624             */
    625             apply_filters( 'subdirectory_reserved_names', array( 'page', 'comments', 'blog', 'files', 'feed' ) )
     625            apply_filters( 'subdirectory_reserved_names', array( 'page', 'comments', 'blog', 'files', 'feed', 'wp-admin', 'wp-content', 'wp-includes' ) )
    626626        );
    627627    }
Note: See TracChangeset for help on using the changeset viewer.