Merge a multi-line comment into a single-line comment in wp-includes/link-template.php.

See [30166]. See #30224.


git-svn-id: https://develop.svn.wordpress.org/trunk@30226 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes (DrewAPicture) 2014-11-04 15:58:44 +00:00
parent ecec9d3595
commit 9cbffbdb44
1 changed files with 1 additions and 2 deletions

View File

@ -2333,8 +2333,7 @@ function get_the_pagination( $args = array() ) {
// Set up paginated links.
$links = paginate_links( $args );
// _navigation_markup() expects string,
// paginate_links() can return an array
// `navigation_markup()` expects a string, `paginate_links()` can return an array.
if ( $links && ! is_array( $links ) ) {
$navigation = _navigation_markup( $links, 'pagination' );
}