From 7174893a6d056ae006a9ee9f5829c6dd483f317b Mon Sep 17 00:00:00 2001 From: conradverm Date: Mon, 17 Mar 2008 15:11:58 +0000 Subject: [PATCH] KTS-3159 "CLONE -3.5.2 Upgrade - INFO: Scheduler - Background tasks errors(SUP-636)" Fixed. --- search2/indexing/extractors/PDFExtractor.inc.php | 6 ++++++ 1 file changed, 6 insertions(+), 0 deletions(-) diff --git a/search2/indexing/extractors/PDFExtractor.inc.php b/search2/indexing/extractors/PDFExtractor.inc.php index d4e8d97..89157bb 100755 --- a/search2/indexing/extractors/PDFExtractor.inc.php +++ b/search2/indexing/extractors/PDFExtractor.inc.php @@ -67,6 +67,12 @@ class PDFExtractor extends ApplicationExtractor return true; } + if (false === $res && (strpos($this->output, '(continuing anyway)') !== false)) + { + $this->output = ''; + return true; + } + return $res; } -- libgit2 0.21.4