aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-05-24 22:34:52 -0700
committerzotlabs <mike@macgirvin.com>2017-05-24 22:34:52 -0700
commitfd357f87be5bbdbe135173305cdc9ba550a34e21 (patch)
tree6b0b12334350f8a98699ee22300b97ba6d0717ca /Zotlabs
parentdf8c69f73b54d33ba2bec7d227f6e6f948f4b451 (diff)
downloadvolse-hubzilla-fd357f87be5bbdbe135173305cdc9ba550a34e21.tar.gz
volse-hubzilla-fd357f87be5bbdbe135173305cdc9ba550a34e21.tar.bz2
volse-hubzilla-fd357f87be5bbdbe135173305cdc9ba550a34e21.zip
only store search info for text filetypes when updating the documentation indexes
Diffstat (limited to 'Zotlabs')
-rwxr-xr-xZotlabs/Daemon/Importdoc.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/Zotlabs/Daemon/Importdoc.php b/Zotlabs/Daemon/Importdoc.php
index 3109a5d86..0ca589e4a 100755
--- a/Zotlabs/Daemon/Importdoc.php
+++ b/Zotlabs/Daemon/Importdoc.php
@@ -21,12 +21,18 @@ class Importdoc {
$files = glob("$d/$f");
if($files) {
foreach($files as $fi) {
- if($fi === 'doc/html')
+ if($fi === 'doc/html') {
continue;
- if(is_dir($fi))
+ }
+ if(is_dir($fi)) {
self::update_docs_dir("$fi/*");
- else
- store_doc_file($fi);
+ }
+ else {
+ // don't update media content
+ if(strpos(z_mime_content_type($fi),'text') === 0) {
+ store_doc_file($fi);
+ }
+ }
}
}
}