diff options
author | Romain d'Alverny <rda@mageia.org> | 2012-02-21 19:30:40 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2012-02-21 19:30:40 +0000 |
commit | 671acb84e9a6892a99f635cd981931a8b0bc9758 (patch) | |
tree | 7da843ac9f0d2bbfbc0afe943a7b0f5f7909170b | |
parent | 313de64af0d0dac543f0197ef1b79580f35ab220 (diff) | |
download | www-671acb84e9a6892a99f635cd981931a8b0bc9758.tar www-671acb84e9a6892a99f635cd981931a8b0bc9758.tar.gz www-671acb84e9a6892a99f635cd981931a8b0bc9758.tar.bz2 www-671acb84e9a6892a99f635cd981931a8b0bc9758.tar.xz www-671acb84e9a6892a99f635cd981931a8b0bc9758.zip |
display visitor IP address
-rw-r--r-- | en/downloads/get/index.php | 21 | ||||
-rw-r--r-- | en/downloads/get/lib.php | 1 |
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) { |