[wp-trac] [WordPress Trac] #47481: Wrong arguments order in the_meta()
WordPress Trac
noreply at wordpress.org
Tue Jun 4 16:26:40 UTC 2019
#47481: Wrong arguments order in the_meta()
-------------------------------+-----------------------------
Reporter: loyaltymanufaktur | Owner: (none)
Type: defect (bug) | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Posts, Post Types | Version: trunk
Severity: minor | Keywords: has-patch
Focuses: template |
-------------------------------+-----------------------------
./wp-includes/post-template.php:1107
{{{
$value = implode( $values, ', ' );
}}}
The glue argument should be the first one:
{{{
$value = implode( ', ', $values );
}}}
--
Ticket URL: <https://core.trac.wordpress.org/ticket/47481>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list