Commit 74695cde0ab14624798d7c96aa2312815d4723ef
1 parent
b9dff734
KTS-673
"The search algorithm needs some work" Updated. Removed internal metadata references Committed By: Conrad Vermeulen Reviewed By: Kevin Fourie git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@7458 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
5 additions
and
0 deletions
search2/indexing/extractors/ExifExtractor.inc.php
| @@ -27,6 +27,11 @@ class ExifExtractor extends DocumentExtractor | @@ -27,6 +27,11 @@ class ExifExtractor extends DocumentExtractor | ||
| 27 | // no point indexing numeric content. it will be ignored anyways! | 27 | // no point indexing numeric content. it will be ignored anyways! |
| 28 | continue; | 28 | continue; |
| 29 | } | 29 | } |
| 30 | + if ($key =='FILE' && in_array($name, array('MimeType', 'SectionsFound'))) | ||
| 31 | + { | ||
| 32 | + continue; | ||
| 33 | + } | ||
| 34 | + | ||
| 30 | $content .= "$val\n"; | 35 | $content .= "$val\n"; |
| 31 | } | 36 | } |
| 32 | } | 37 | } |