Skip to content

Commit

Permalink
Merge pull request #94 from fabianaromagnoli/patch-1
Browse files Browse the repository at this point in the history
Fix check on empty string
  • Loading branch information
stubbedev authored Jul 24, 2024
2 parents 623bc46 + 88e9694 commit 11a9724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/controllers/ApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ public function pageAction()

try {

if(str_replace(' ', '', $Additional_Field == '')){
if(str_replace(' ', '', $Additional_Field) == ''){
continue;
}

Expand Down

0 comments on commit 11a9724

Please sign in to comment.