From d9fd3df95d7c25e99934d739faeca8fc12e39f36 Mon Sep 17 00:00:00 2001 From: Felix Baumgaertner Date: Wed, 24 Feb 2021 20:39:25 +0100 Subject: [PATCH 1/2] Added missing space to provide valid HTML. Fixes #29061. --- packages/block-library/src/search/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/block-library/src/search/index.php b/packages/block-library/src/search/index.php index 36607188ff44a..c988ae3b93e40 100644 --- a/packages/block-library/src/search/index.php +++ b/packages/block-library/src/search/index.php @@ -80,7 +80,7 @@ function render_block_core_search( $attributes ) { } $button_markup = sprintf( - '', + '', $button_internal_markup ); } From 5046431026e969da3fdee2da94e2af6ec91a0ce9 Mon Sep 17 00:00:00 2001 From: Felix Baumgaertner Date: Thu, 25 Feb 2021 01:34:20 +0100 Subject: [PATCH 2/2] Docs git-workflow: Fixes error in example code. --- docs/contributors/git-workflow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributors/git-workflow.md b/docs/contributors/git-workflow.md index 2e4926d593578..abf66ea8536be 100644 --- a/docs/contributors/git-workflow.md +++ b/docs/contributors/git-workflow.md @@ -60,7 +60,7 @@ git commit -m "Your Good Commit Message" path/to/FILE **Step 6**: Push your change up to GitHub. The change will be pushed to your fork of the repository on the GitHub ```bash -git push -u origin upgrade/my-branch +git push -u origin update/my-branch ``` **Step 7**: Go to your forked repository on GitHub -- it will automatically detect the change and give you a link to create a pull request.