aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugins/archiveorg
diff options
context:
space:
mode:
authorTeromene <teromene@teromene.fr>2016-10-11 16:37:42 +0100
committerTeromene <teromene@teromene.fr>2016-10-13 16:37:43 +0100
commit5e148f8a529abf72256ef74ed149d56a5b27bd72 (patch)
tree541690731c5678a0f1cccf51a0a861c2d6acdd8b /plugins/archiveorg
parentdc8e03bfc415d3771a45ccd324078a48b7466cbe (diff)
downloadShaarli-5e148f8a529abf72256ef74ed149d56a5b27bd72.tar.gz
Shaarli-5e148f8a529abf72256ef74ed149d56a5b27bd72.tar.zst
Shaarli-5e148f8a529abf72256ef74ed149d56a5b27bd72.zip
Archive.org plugin: do not propose archival of private notes
Fixes #637
Diffstat (limited to 'plugins/archiveorg')
-rw-r--r--plugins/archiveorg/archiveorg.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/archiveorg/archiveorg.php b/plugins/archiveorg/archiveorg.php
index 7d172584..03d13d0e 100644
--- a/plugins/archiveorg/archiveorg.php
+++ b/plugins/archiveorg/archiveorg.php
@@ -17,6 +17,9 @@ function hook_archiveorg_render_linklist($data)
17 $archive_html = file_get_contents(PluginManager::$PLUGINS_PATH . '/archiveorg/archiveorg.html'); 17 $archive_html = file_get_contents(PluginManager::$PLUGINS_PATH . '/archiveorg/archiveorg.html');
18 18
19 foreach ($data['links'] as &$value) { 19 foreach ($data['links'] as &$value) {
20 if($value['private'] && preg_match('/^\?[a-zA-Z0-9-_@]{6}($|&|#)/', $value['real_url'])) {
21 continue;
22 }
20 $archive = sprintf($archive_html, $value['url']); 23 $archive = sprintf($archive_html, $value['url']);
21 $value['link_plugin'][] = $archive; 24 $value['link_plugin'][] = $archive;
22 } 25 }