Changeset 44612
- Timestamp:
- 01/16/2019 05:28:56 AM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/user-new.php
r43571 r44612 166 166 $add_user_errors = $user_details['errors']; 167 167 } else { 168 /** 169 * Filters the user_login, also known as the username, before it is added to the site. 170 * 171 * @since 2.0.3 172 * 173 * @param string $user_login The sanitized username. 174 */ 168 /** This filter is documented in wp-includes/user.php */ 175 169 $new_user_login = apply_filters( 'pre_user_login', sanitize_user( wp_unslash( $_REQUEST['user_login'] ), true ) ); 176 170 if ( isset( $_POST['noconfirmation'] ) && current_user_can( 'manage_network_users' ) ) { -
trunk/src/wp-includes/bookmark-template.php
r43571 r44612 267 267 ); 268 268 /** 269 * Filters the bookmarkscategory name.269 * Filters the category name. 270 270 * 271 271 * @since 2.2.0 272 272 * 273 * @param string $cat_name The category name of bookmarks.273 * @param string $cat_name The category name. 274 274 */ 275 275 $catname = apply_filters( 'link_category', $cat->name ); -
trunk/src/wp-links-opml.php
r43571 r44612 64 64 65 65 foreach ( (array) $cats as $cat ) : 66 /** 67 * Filters the OPML outline link category name. 68 * 69 * @since 2.2.0 70 * 71 * @param string $catname The OPML outline category name. 72 */ 66 /** This filter is documented in wp-includes/bookmark-template.php */ 73 67 $catname = apply_filters( 'link_category', $cat->name ); 74 68
Note: See TracChangeset
for help on using the changeset viewer.