fixes reported quote issue on $file in shel exec commands (MDL14325)

This commit is contained in:
diml
2008-04-11 23:22:58 +00:00
parent 77cd174025
commit 151744819b
+1 -1
View File
@@ -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);
}