<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[59157] trunk: I18N: Do not load translations directly in `load_*_textdomain`.</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { white-space: pre-line; overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta" style="font-size: 105%">
<dt style="float: left; width: 6em; font-weight: bold">Revision</dt> <dd><a style="font-weight: bold" href="https://core.trac.wordpress.org/changeset/59157">59157</a><script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","description":"Review this Commit","action":{"@type":"ViewAction","url":"https://core.trac.wordpress.org/changeset/59157","name":"Review Commit"}}</script></dd>
<dt style="float: left; width: 6em; font-weight: bold">Author</dt> <dd>swissspidy</dd>
<dt style="float: left; width: 6em; font-weight: bold">Date</dt> <dd>2024-10-02 13:42:11 +0000 (Wed, 02 Oct 2024)</dd>
</dl>

<pre style='padding-left: 1em; margin: 2em 0; border-left: 2px solid #ccc; line-height: 1.25; font-size: 105%; font-family: sans-serif'>I18N: Do not load translations directly in `load_*_textdomain`.

In <a href="https://core.trac.wordpress.org/changeset/59127">[59127]</a>, `_doing_it_wrong` warnings were added if plugins or themes load translations too early, either through a manual function call or just-in-time loading.

Because many plugins and themes still manually call `load_plugin_textdomain()`, `load_theme_textdomain()` or `load_muplugin_textdomain()`, even though they don't have to anymore, that caused a lot of warnings.

With this new approach, these functions merely register the translations path in the existing `WP_Textdomain_Registry` and do not immediately try to load the translations anymore. The loading is all handled by the just-in-time functionality.

This way, warnings will only be emitted if triggering the just-in-time loading too early, greatly improving the developer experience and to a degree also performance.

Props swissspidy, sergeybiryukov, mukesh27.
See <a href="https://core.trac.wordpress.org/ticket/44937">#44937</a>.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunksrcwpincludesl10nphp">trunk/src/wp-includes/l10n.php</a></li>
<li><a href="#trunktestsphpunittestsl10nloadTextdomainphp">trunk/tests/phpunit/tests/l10n/loadTextdomain.php</a></li>
<li><a href="#trunktestsphpunittestsrestapirestthemescontrollerphp">trunk/tests/phpunit/tests/rest-api/rest-themes-controller.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunksrcwpincludesl10nphp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/src/wp-includes/l10n.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/src/wp-includes/l10n.php    2024-10-01 18:44:01 UTC (rev 59156)
+++ trunk/src/wp-includes/l10n.php      2024-10-02 13:42:11 UTC (rev 59157)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -983,6 +983,7 @@
</span><span class="cx" style="display: block; padding: 0 10px">  *
</span><span class="cx" style="display: block; padding: 0 10px">  * @since 1.5.0
</span><span class="cx" style="display: block; padding: 0 10px">  * @since 4.6.0 The function now tries to load the .mo file from the languages directory first.
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+ * @since 6.7.0 Translations are no longer immediately loaded, but handed off to the just-in-time loading mechanism.
</ins><span class="cx" style="display: block; padding: 0 10px">  *
</span><span class="cx" style="display: block; padding: 0 10px">  * @param string       $domain          Unique identifier for retrieving translated strings
</span><span class="cx" style="display: block; padding: 0 10px">  * @param string|false $deprecated      Optional. Deprecated. Use the $plugin_rel_path parameter instead.
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -999,36 +1000,6 @@
</span><span class="cx" style="display: block; padding: 0 10px">                return false;
</span><span class="cx" style="display: block; padding: 0 10px">        }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-        if ( ! doing_action( 'after_setup_theme' ) && ! did_action( 'after_setup_theme' ) ) {
-               _doing_it_wrong(
-                       __FUNCTION__,
-                       sprintf(
-                               /* translators: 1: The text domain. 2: 'after_setup_theme'. */
-                               __( 'Attempted to load translations for the %1$s domain too early. Translations should be loaded after the %2$s action has fired, to ensure that the current user is already set up.' ),
-                               '<code>' . $domain . '</code>',
-                               '<code>after_setup_theme</code>'
-                       ),
-                       '6.7.0'
-               );
-       }
-
-       /**
-        * Filters a plugin's locale.
-        *
-        * @since 3.0.0
-        *
-        * @param string $locale The plugin's current locale.
-        * @param string $domain Text domain. Unique identifier for retrieving translated strings.
-        */
-       $locale = apply_filters( 'plugin_locale', determine_locale(), $domain );
-
-       $mofile = $domain . '-' . $locale . '.mo';
-
-       // Try to load from the languages directory first.
-       if ( load_textdomain( $domain, WP_LANG_DIR . '/plugins/' . $mofile, $locale ) ) {
-               return true;
-       }
-
</del><span class="cx" style="display: block; padding: 0 10px">         if ( false !== $plugin_rel_path ) {
</span><span class="cx" style="display: block; padding: 0 10px">                $path = WP_PLUGIN_DIR . '/' . trim( $plugin_rel_path, '/' );
</span><span class="cx" style="display: block; padding: 0 10px">        } elseif ( false !== $deprecated ) {
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -1040,7 +1011,7 @@
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        $wp_textdomain_registry->set_custom_path( $domain, $path );
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-        return load_textdomain( $domain, $path . '/' . $mofile, $locale );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+ return true;
</ins><span class="cx" style="display: block; padding: 0 10px"> }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px"> /**
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -1048,6 +1019,7 @@
</span><span class="cx" style="display: block; padding: 0 10px">  *
</span><span class="cx" style="display: block; padding: 0 10px">  * @since 3.0.0
</span><span class="cx" style="display: block; padding: 0 10px">  * @since 4.6.0 The function now tries to load the .mo file from the languages directory first.
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+ * @since 6.7.0 Translations are no longer immediately loaded, but handed off to the just-in-time loading mechanism.
</ins><span class="cx" style="display: block; padding: 0 10px">  *
</span><span class="cx" style="display: block; padding: 0 10px">  * @global WP_Textdomain_Registry $wp_textdomain_registry WordPress Textdomain Registry.
</span><span class="cx" style="display: block; padding: 0 10px">  *
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -1064,34 +1036,11 @@
</span><span class="cx" style="display: block; padding: 0 10px">                return false;
</span><span class="cx" style="display: block; padding: 0 10px">        }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-        if ( ! doing_action( 'after_setup_theme' ) && ! did_action( 'after_setup_theme' ) ) {
-               _doing_it_wrong(
-                       __FUNCTION__,
-                       sprintf(
-                               /* translators: 1: The text domain. 2: 'after_setup_theme'. */
-                               __( 'Attempted to load translations for the %1$s domain too early. Translations should be loaded after the %2$s action has fired, to ensure that the current user is already set up.' ),
-                               '<code>' . $domain . '</code>',
-                               '<code>after_setup_theme</code>'
-                       ),
-                       '6.7.0'
-               );
-       }
-
-       /** This filter is documented in wp-includes/l10n.php */
-       $locale = apply_filters( 'plugin_locale', determine_locale(), $domain );
-
-       $mofile = $domain . '-' . $locale . '.mo';
-
-       // Try to load from the languages directory first.
-       if ( load_textdomain( $domain, WP_LANG_DIR . '/plugins/' . $mofile, $locale ) ) {
-               return true;
-       }
-
</del><span class="cx" style="display: block; padding: 0 10px">         $path = WPMU_PLUGIN_DIR . '/' . ltrim( $mu_plugin_rel_path, '/' );
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        $wp_textdomain_registry->set_custom_path( $domain, $path );
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-        return load_textdomain( $domain, $path . '/' . $mofile, $locale );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+ return true;
</ins><span class="cx" style="display: block; padding: 0 10px"> }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px"> /**
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -1104,6 +1053,7 @@
</span><span class="cx" style="display: block; padding: 0 10px">  *
</span><span class="cx" style="display: block; padding: 0 10px">  * @since 1.5.0
</span><span class="cx" style="display: block; padding: 0 10px">  * @since 4.6.0 The function now tries to load the .mo file from the languages directory first.
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+ * @since 6.7.0 Translations are no longer immediately loaded, but handed off to the just-in-time loading mechanism.
</ins><span class="cx" style="display: block; padding: 0 10px">  *
</span><span class="cx" style="display: block; padding: 0 10px">  * @global WP_Textdomain_Registry $wp_textdomain_registry WordPress Textdomain Registry.
</span><span class="cx" style="display: block; padding: 0 10px">  *
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -1120,36 +1070,6 @@
</span><span class="cx" style="display: block; padding: 0 10px">                return false;
</span><span class="cx" style="display: block; padding: 0 10px">        }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-        if ( ! doing_action( 'after_setup_theme' ) && ! did_action( 'after_setup_theme' ) ) {
-               _doing_it_wrong(
-                       __FUNCTION__,
-                       sprintf(
-                               /* translators: 1: The text domain. 2: 'after_setup_theme'. */
-                               __( 'Attempted to load translations for the %1$s domain too early. Translations should be loaded after the %2$s action has fired, to ensure that the current user is already set up.' ),
-                               '<code>' . $domain . '</code>',
-                               '<code>after_setup_theme</code>'
-                       ),
-                       '6.7.0'
-               );
-       }
-
-       /**
-        * Filters a theme's locale.
-        *
-        * @since 3.0.0
-        *
-        * @param string $locale The theme's current locale.
-        * @param string $domain Text domain. Unique identifier for retrieving translated strings.
-        */
-       $locale = apply_filters( 'theme_locale', determine_locale(), $domain );
-
-       $mofile = $domain . '-' . $locale . '.mo';
-
-       // Try to load from the languages directory first.
-       if ( load_textdomain( $domain, WP_LANG_DIR . '/themes/' . $mofile, $locale ) ) {
-               return true;
-       }
-
</del><span class="cx" style="display: block; padding: 0 10px">         if ( ! $path ) {
</span><span class="cx" style="display: block; padding: 0 10px">                $path = get_template_directory();
</span><span class="cx" style="display: block; padding: 0 10px">        }
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -1156,7 +1076,7 @@
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        $wp_textdomain_registry->set_custom_path( $domain, $path );
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-        return load_textdomain( $domain, $path . '/' . $locale . '.mo', $locale );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+ return true;
</ins><span class="cx" style="display: block; padding: 0 10px"> }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px"> /**
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -1425,9 +1345,10 @@
</span><span class="cx" style="display: block; padding: 0 10px">                _doing_it_wrong(
</span><span class="cx" style="display: block; padding: 0 10px">                        __FUNCTION__,
</span><span class="cx" style="display: block; padding: 0 10px">                        sprintf(
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                                /* translators: %s: The text domain. */
-                               __( 'Translation loading for the %s domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early.' ),
-                               '<code>' . $domain . '</code>'
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+                         /* translators: 1: The text domain. 2: 'init'. */
+                               __( 'Translation loading for the %1$s domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the %2$s action or later.' ),
+                               '<code>' . $domain . '</code>',
+                               '<code>init</code>'
</ins><span class="cx" style="display: block; padding: 0 10px">                         ),
</span><span class="cx" style="display: block; padding: 0 10px">                        '6.7.0'
</span><span class="cx" style="display: block; padding: 0 10px">                );
</span></span></pre></div>
<a id="trunktestsphpunittestsl10nloadTextdomainphp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/tests/phpunit/tests/l10n/loadTextdomain.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/tests/phpunit/tests/l10n/loadTextdomain.php 2024-10-01 18:44:01 UTC (rev 59156)
+++ trunk/tests/phpunit/tests/l10n/loadTextdomain.php   2024-10-02 13:42:11 UTC (rev 59157)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -5,7 +5,6 @@
</span><span class="cx" style="display: block; padding: 0 10px">  * @group i18n
</span><span class="cx" style="display: block; padding: 0 10px">  */
</span><span class="cx" style="display: block; padding: 0 10px"> class Tests_L10n_LoadTextdomain extends WP_UnitTestCase {
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-        protected $locale;
</del><span class="cx" style="display: block; padding: 0 10px">         protected static $user_id;
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) {
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -20,11 +19,6 @@
</span><span class="cx" style="display: block; padding: 0 10px">        public function set_up() {
</span><span class="cx" style="display: block; padding: 0 10px">                parent::set_up();
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->locale = '';
-
-               add_filter( 'plugin_locale', array( $this, 'store_locale' ) );
-               add_filter( 'theme_locale', array( $this, 'store_locale' ) );
-
</del><span class="cx" style="display: block; padding: 0 10px">                 /** @var WP_Textdomain_Registry $wp_textdomain_registry */
</span><span class="cx" style="display: block; padding: 0 10px">                global $wp_textdomain_registry;
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -41,12 +35,6 @@
</span><span class="cx" style="display: block; padding: 0 10px">                parent::tear_down();
</span><span class="cx" style="display: block; padding: 0 10px">        }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-        public function store_locale( $locale ) {
-               $this->locale = $locale;
-
-               return $locale;
-       }
-
</del><span class="cx" style="display: block; padding: 0 10px">         /**
</span><span class="cx" style="display: block; padding: 0 10px">         * @covers ::is_textdomain_loaded
</span><span class="cx" style="display: block; padding: 0 10px">         */
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -233,75 +221,6 @@
</span><span class="cx" style="display: block; padding: 0 10px">        }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        /**
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-         * @covers ::load_muplugin_textdomain
-        */
-       public function test_load_muplugin_textdomain_site_locale() {
-               load_muplugin_textdomain( 'wp-tests-domain' );
-
-               $this->assertSame( get_locale(), $this->locale );
-       }
-
-       /**
-        * @ticket 38485
-        *
-        * @covers ::load_muplugin_textdomain
-        */
-       public function test_load_muplugin_textdomain_user_locale() {
-               set_current_screen( 'dashboard' );
-               wp_set_current_user( self::$user_id );
-
-               load_muplugin_textdomain( 'wp-tests-domain' );
-
-               $this->assertSame( get_user_locale(), $this->locale );
-       }
-
-       /**
-        * @covers ::load_plugin_textdomain
-        */
-       public function test_load_plugin_textdomain_site_locale() {
-               load_plugin_textdomain( 'wp-tests-domain' );
-
-               $this->assertSame( get_locale(), $this->locale );
-       }
-
-       /**
-        * @ticket 38485
-        *
-        * @covers ::load_plugin_textdomain
-        */
-       public function test_load_plugin_textdomain_user_locale() {
-               set_current_screen( 'dashboard' );
-               wp_set_current_user( self::$user_id );
-
-               load_plugin_textdomain( 'wp-tests-domain' );
-
-               $this->assertSame( get_user_locale(), $this->locale );
-       }
-
-       /**
-        * @covers ::load_theme_textdomain
-        */
-       public function test_load_theme_textdomain_site_locale() {
-               load_theme_textdomain( 'wp-tests-domain' );
-
-               $this->assertSame( get_locale(), $this->locale );
-       }
-
-       /**
-        * @ticket 38485
-        *
-        * @covers ::load_theme_textdomain
-        */
-       public function test_load_theme_textdomain_user_locale() {
-               set_current_screen( 'dashboard' );
-               wp_set_current_user( self::$user_id );
-
-               load_theme_textdomain( 'wp-tests-domain' );
-
-               $this->assertSame( get_user_locale(), $this->locale );
-       }
-
-       /**
</del><span class="cx" style="display: block; padding: 0 10px">          * @ticket 58035
</span><span class="cx" style="display: block; padding: 0 10px">         *
</span><span class="cx" style="display: block; padding: 0 10px">         * @covers ::load_theme_textdomain
</span></span></pre></div>
<a id="trunktestsphpunittestsrestapirestthemescontrollerphp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/tests/phpunit/tests/rest-api/rest-themes-controller.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/tests/phpunit/tests/rest-api/rest-themes-controller.php     2024-10-01 18:44:01 UTC (rev 59156)
+++ trunk/tests/phpunit/tests/rest-api/rest-themes-controller.php       2024-10-02 13:42:11 UTC (rev 59157)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -582,8 +582,8 @@
</span><span class="cx" style="display: block; padding: 0 10px">                $response = self::perform_active_theme_request();
</span><span class="cx" style="display: block; padding: 0 10px">                $result   = $response->get_data();
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertArrayHasKey( 'tags', $result[0] );
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->assertSame( array( 'holiday', 'custom-menu' ), $result[0]['tags']['raw'] );
-               $this->assertSame( 'holiday, custom-menu', $result[0]['tags']['rendered'] );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $this->assertSame( array( 'Holiday', 'custom-menu' ), $result[0]['tags']['raw'] );
+               $this->assertSame( 'Holiday, custom-menu', $result[0]['tags']['rendered'] );
</ins><span class="cx" style="display: block; padding: 0 10px">         }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        /**
</span></span></pre>
</div>
</div>

</body>
</html>