Skip to content

Commit

Permalink
Merge pull request #61 from threadi/feature/addGitHubActionToBuildRel…
Browse files Browse the repository at this point in the history
…ease

update GitHub action to build releases
  • Loading branch information
threadi authored Dec 15, 2024
2 parents e7f254d + 5702d55 commit 75af06f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/ExternalFiles/Forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ public function add_urls_via_ajax(): void {
$password = filter_input( INPUT_POST, 'password', FILTER_SANITIZE_FULL_SPECIAL_CHARS );

// get additional fields.
$additional_fields = isset( $_POST['additional_fields'] ) ? array_map( 'sanitize_text_field', $_POST['additional_fields'] ) : array();
$additional_fields = isset( $_POST['additional_fields'] ) ? array_map( 'sanitize_text_field', wp_unslash( $_POST['additional_fields'] ) ) : array();

$false = false;
/**
Expand Down

0 comments on commit 75af06f

Please sign in to comment.