From: Vincent Vanwaelscappel Date: Thu, 7 Aug 2025 14:53:23 +0000 (+0200) Subject: wip #7684 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=224749c8f34cb7895152b04ba16ea347ce0618be;p=fluidbook_processfarm.git wip #7684 --- diff --git a/app/process.php b/app/process.php index 9f55794..cb374c1 100644 --- a/app/process.php +++ b/app/process.php @@ -33,7 +33,7 @@ try { } else if ($_POST['operation'] === 'extracttexts') { $res = PDFOperations::extractTexts($_POST['pdf'], $_POST['out'], $_POST['mode'] ?? 'standard', $_POST['method'] ?? 'fluidbook', $_POST['ignoreseparators'] ?? ''); } else if ($_POST['operation'] === 'extracthightlightsdata') { - $res = PDFOperations::extractHighlightsData($_POST['pdf'], $_POST['out'], $_POST['mode'], $_POST['ignoreseparators']); + $res = PDFOperations::extractHighlightsData($_POST['pdf'], $_POST['out'], $_POST['mode'], $_POST['ignoreseparators'] ?? ''); } else if ($_POST['operation'] === 'extractmarkdown') { $res = PDFOperations::extractMarkdown($_POST['pdf'], $_POST['out']); } else if ($_POST['operation'] === 'extractpdfarea') {