From 8d016bafa2e5915a18c90deea1599b61a0f78d08 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Tue, 17 Jun 2025 07:59:04 -0700 Subject: [PATCH 1/2] [ticket/17519] Revert cron url escape back to html_attr PHPBB-17519 --- phpBB/styles/all/template/cron.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/styles/all/template/cron.html b/phpBB/styles/all/template/cron.html index 89ceaaba78..5e4c901263 100644 --- a/phpBB/styles/all/template/cron.html +++ b/phpBB/styles/all/template/cron.html @@ -4,4 +4,4 @@ to hide visually and `aria-hidden="true"` to hide from screen-readers; using `hidden` or `display: none` would prevent the task from running. #} - + From e47ba9e81d46ef728dcdd0b424d3c4c3cf5b0ae1 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Tue, 17 Jun 2025 09:00:06 -0700 Subject: [PATCH 2/2] [ticket/17519] Fix tests PHPBB-17519 --- tests/cron/wrapper_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cron/wrapper_test.php b/tests/cron/wrapper_test.php index aca299782d..ba05604b53 100644 --- a/tests/cron/wrapper_test.php +++ b/tests/cron/wrapper_test.php @@ -67,7 +67,7 @@ class phpbb_cron_wrapper_test extends phpbb_template_template_test_case $this->template ); - $this->assertEquals('', str_replace(["\n", "\t"], '', $this->wrapper->get_html_tag())); + $this->assertEquals('', str_replace(["\n", "\t"], '', $this->wrapper->get_html_tag())); } public function test_is_parametrized_false()