From 411b3280d1d97bef1168037e9bb424136fc9d4b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20SAUVAGE?= Date: Wed, 14 Aug 2013 14:37:57 +0200 Subject: [PATCH] Update CryptomeBridge.php Use direct (non-HTTPs) cryptome.org URI. --- bridges/CryptomeBridge.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bridges/CryptomeBridge.php b/bridges/CryptomeBridge.php index 7228236b..1409ecfa 100644 --- a/bridges/CryptomeBridge.php +++ b/bridges/CryptomeBridge.php @@ -13,7 +13,9 @@ class CryptomeBridge extends BridgeAbstract{ public function collectData(array $param){ $html = ''; $num = 90; - $link = 'https://secure.netsolhost.com/cryptome.org/'; + $link = 'http://cryptome.org/'; + // If you want HTTPS access instead, uncomment the following line: + //$link = 'https://secure.netsolhost.com/cryptome.org/'; $html = file_get_html($link) or $this->returnError('Could not request Cryptome.', 404); if (isset($param['n'])) { /* number of documents */