diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index f4cf72c258..6a27a67d92 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -1738,7 +1738,7 @@ function get_comment_reply_link( $args = array(), $comment = null, $post = null $data_attribute_string = ''; foreach ( $data_attributes as $name => $value ) { - $data_attribute_string .= " data-${name}=\"" . esc_attr( $value ) . '"'; + $data_attribute_string .= " data-{$name}=\"" . esc_attr( $value ) . '"'; } $data_attribute_string = trim( $data_attribute_string ); diff --git a/wp-includes/pomo/po.php b/wp-includes/pomo/po.php index cfd8084ac6..13fb16eb12 100644 --- a/wp-includes/pomo/po.php +++ b/wp-includes/pomo/po.php @@ -126,7 +126,7 @@ if ( ! class_exists( 'PO', false ) ) : $string = str_replace( array_keys( $replaces ), array_values( $replaces ), $string ); - $po = $quote . implode( "${slash}n$quote$newline$quote", explode( $newline, $string ) ) . $quote; + $po = $quote . implode( "{$slash}n{$quote}{$newline}{$quote}", explode( $newline, $string ) ) . $quote; // Add empty string on first line for readbility. if ( false !== strpos( $string, $newline ) && ( substr_count( $string, $newline ) > 1 || substr( $string, -strlen( $newline ) ) !== $newline ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index c304864534..ac3f007365 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54133'; +$wp_version = '6.1-alpha-54134'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.