Skip to content

Commit 13566c6

Browse files
committed
Merge branch 'core' into edit-refresh/core
2 parents 4662ec1 + 37b6d6a commit 13566c6

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
ref: ${{ inputs.ref }}
2828

2929
- name: Set up PHP
30-
uses: shivammathur/setup-php@v2
30+
uses: codesnippetspro/setup-php@v2
3131
with:
3232
php-version: "8.3"
3333

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- name: Comment
1515
id: comment
16-
uses: peter-evans/create-or-update-comment@v4
16+
uses: codesnippetspro/create-or-update-comment@v4
1717
with:
1818
issue-number: ${{ github.event.pull_request.number }}
1919
body: |
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- name: Publish comment
3333
if: ${{ needs.install.outputs.artifact_name && needs.install.outputs.artifact_url }}
34-
uses: peter-evans/create-or-update-comment@v4
34+
uses: codesnippetspro/create-or-update-comment@v4
3535
with:
3636
edit-mode: replace
3737
comment-id: ${{ needs.comment.outputs.comment_id }}

src/js/services/manage/requests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export type SuccessCallback = (response: ResponseData) => void
1111
const sendSnippetRequest = (query: string, onSuccess?: SuccessCallback) => {
1212
const request = new XMLHttpRequest()
1313
request.open('POST', window.ajaxurl, true)
14-
request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded charset=UTF-8')
14+
request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8')
1515

1616
request.onload = () => {
1717
const success = 200

src/readme.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ https://youtu.be/uzND-wdSCMQ
3131

3232
* [Support Forum](https://wordpress.org/support/plugin/code-snippets)
3333
* [Facebook Community](https://facebook.com/groups/codesnippetsplugin)
34+
* [Discord Community](https://snipco.de/discord)
3435
* [GitHub Repository](https://github.com/codesnippetspro/code-snippets)
3536

3637
🌟 Like our plugin? Find it useful? Please consider sharing your experience by [leaving a review on WordPress.org](https://wordpress.org/support/view/plugin-reviews/code-snippets). Your feedback is instrumental to shaping our future growth!

0 commit comments

Comments
 (0)