diff --git a/wp-includes/pomo/po.php b/wp-includes/pomo/po.php index b2a605a3ec..99bb6891b1 100644 --- a/wp-includes/pomo/po.php +++ b/wp-includes/pomo/po.php @@ -212,11 +212,11 @@ if ( ! class_exists( 'PO', false ) ) : /** * Builds a string from the entry for inclusion in PO file * - * @param Translation_Entry $entry the entry to convert to po string (passed by reference). + * @param Translation_Entry $entry the entry to convert to po string. * @return string|false PO-style formatted string for the entry or * false if the entry is empty */ - public static function export_entry( &$entry ) { + public static function export_entry( $entry ) { if ( null === $entry->singular || '' === $entry->singular ) { return false; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 772b5bb9fa..5e787af5d1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-49185'; +$wp_version = '5.6-alpha-49186'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.