From 8553d7002378f6e0432e06820683a850982fb671 Mon Sep 17 00:00:00 2001 From: diml Date: Fri, 11 Apr 2008 23:20:04 +0000 Subject: [PATCH] fixes reported quote issue on $file in shel exec commands (MDL14325) --- search/documents/physical_doc.php | 2 +- search/documents/physical_pdf.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/search/documents/physical_doc.php b/search/documents/physical_doc.php index 3b5f1c07ec..ca053bde51 100644 --- a/search/documents/physical_doc.php +++ b/search/documents/physical_doc.php @@ -34,7 +34,7 @@ function get_text_for_indexing_doc(&$resource){ else{ $file = escapeshellarg($CFG->dataroot.'/'.$resource->course.'/'.$resource->reference); $command = trim($CFG->block_search_word_to_text_cmd); - $text_converter_cmd = "{$moodleroot}{$command} \"$file\""; + $text_converter_cmd = "{$moodleroot}{$command} $file"; if ($CFG->block_search_word_to_text_env){ putenv($CFG->block_search_word_to_text_env); } diff --git a/search/documents/physical_pdf.php b/search/documents/physical_pdf.php index d3ad8cd71a..703f68bf1e 100644 --- a/search/documents/physical_pdf.php +++ b/search/documents/physical_pdf.php @@ -34,7 +34,7 @@ function get_text_for_indexing_pdf(&$resource){ else{ $file = escapeshellarg($CFG->dataroot.'/'.$resource->course.'/'.$resource->reference); $command = trim($CFG->block_search_pdf_to_text_cmd); - $text_converter_cmd = "{$moodleroot}{$command} \"$file\" -"; + $text_converter_cmd = "{$moodleroot}{$command} $file -"; $result = shell_exec($text_converter_cmd); if ($result){ return $result; -- 2.39.5