Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Roy2019-08-14 20:59:27 +0000
committerDenis Roy2019-08-15 16:54:34 +0000
commita01aeeff3d7e0b79b381b7eadb03945b4f6194c8 (patch)
treee49099626c1b4d926e72678450ae2b555c349915
parent7a67b697b3a36ad92ed97049e1a0c0db80fd5cc8 (diff)
downloaddownloads-a01aeeff3d7e0b79b381b7eadb03945b4f6194c8.tar.gz
downloads-a01aeeff3d7e0b79b381b7eadb03945b4f6194c8.tar.xz
downloads-a01aeeff3d7e0b79b381b7eadb03945b4f6194c8.zip
Support https mirrors
Change-Id: I8af857e8f3b9835c83a6d51a9d02f75806db20c1 Signed-off-by: Denis Roy <denis.roy@eclipse-foundation.org>
-rwxr-xr-xdownload.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/download.php b/download.php
index 13a66884..0034b4e1 100755
--- a/download.php
+++ b/download.php
@@ -412,7 +412,7 @@
$where = " MRD.drop_id = 'EclipseFull'";
if($_protocol != "") {
- $where .= " AND MRP.protocol = '$_protocol'";
+ $where .= " AND MRP.protocol LIKE '" . $app->sqlSanitize($_protocol, $dbh_RW) . "%'";
}
if($_mirror_id > 0) {
$where .= " AND MIR.mirror_id = '$_mirror_id'";

Back to the top