Docs: There are quite alot of typos in core inline comments.

See #32246.


git-svn-id: https://develop.svn.wordpress.org/trunk@34717 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes
2015-09-30 04:12:16 +00:00
parent 87fbd30548
commit 69db043e3c
5 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -1015,7 +1015,7 @@ function get_search_link( $query = '' ) {
$link = home_url('?s=' . urlencode($search) );
} else {
$search = urlencode($search);
$search = str_replace('%2F', '/', $search); // %2F(/) is not valid within a URL, send it unencoded.
$search = str_replace('%2F', '/', $search); // %2F(/) is not valid within a URL, send it un-encoded.
$link = str_replace( '%search%', $search, $permastruct );
$link = home_url( user_trailingslashit( $link, 'search' ) );
}