aboutsummaryrefslogtreecommitdiffstats
path: root/en/downloads
diff options
context:
space:
mode:
Diffstat (limited to 'en/downloads')
-rw-r--r--en/downloads/get/index.php21
-rw-r--r--en/downloads/get/lib.php1
2 files changed, 13 insertions, 9 deletions
diff --git a/en/downloads/get/index.php b/en/downloads/get/index.php
index 0781c3e6a..496b94ca8 100644
--- a/en/downloads/get/index.php
+++ b/en/downloads/get/index.php
@@ -28,6 +28,7 @@ require 'lib.php';
// request
$product = get('q');
+$debug = get('d');
$torrent = isset($_GET['torrent']) ? true : false;
if (is_null($product)) {
@@ -152,22 +153,24 @@ $_t['page_title'] = sprintf($_t['page_title'], '<em class="tag">' . $title . '</
' ', sprintf($_t['dl_size'], $product['size']),
' ', sprintf($_t['alt_download'], $download, $download);
?></p>
-
+
<div class="dlinfo">
<p><?php echo $dl2_mirror_alt; ?></p>
- <?php if (((isset($product['md5']) && strlen($product['md5']) > 0)
- || (isset($product['sha1'])) && strlen($product['sha1']) > 0)
- && !$torrent): ?>
- <p><?php echo $_t['signs_check_1']; ?></p>
- <div id="check-signs">
- <pre class="term">
+ <?php
+ if (((isset($product['md5']) && strlen($product['md5']) > 0)
+ || (isset($product['sha1'])) && strlen($product['sha1']) > 0)
+ && !$torrent): ?>
+ <p><?php echo $_t['signs_check_1']; ?></p>
+ <div id="check-signs">
+ <pre class="term">
<?php if (strlen($product['md5'])): ?>$ md5sum <?php echo basename($download), "\n<strong>", $product['md5'], "</strong>\n"; endif; ?>
<?php if (strlen($product['sha1'])): ?>$ sha1sum <?php echo basename($download), "\n<strong>", $product['sha1'], "</strong>\n"; endif; ?>
</pre>
- <p><?php echo $_t['signs_check_2']; ?></p>
- </div>
+ <p><?php echo $_t['signs_check_2']; ?></p>
+ </div>
<?php endif; ?>
+ <p><?php echo sprintf('Your IP address is: %s.', $_SESSION['ip']); ?>
</div>
<!-- alternative mirrors table -->
diff --git a/en/downloads/get/lib.php b/en/downloads/get/lib.php
index 73a01fbe2..bcafa8b56 100644
--- a/en/downloads/get/lib.php
+++ b/en/downloads/get/lib.php
@@ -37,6 +37,7 @@ class NoProductFoundError extends Exception {}
class NoMirrorFoundError extends Exception {}
/**
+ * TODO use aliases, so that downloads asking for alpha3 get redirected to beta1 for instance? (on migration)
*/
function get_info_for_product($product)
{