]> git.p6c8.net - jirafeau_project.git/blobdiff - lib/functions.php
[FEATURE] allow admin to not log users IP in Jirafeau
[jirafeau_project.git] / lib / functions.php
index b3dc9045f930dc9462bf5c6cbcdcc7a7daeee72f..546decc0806fb2fdf96098be4db0cd05df8c2628 100644 (file)
@@ -680,7 +680,9 @@ function jirafeau_admin_list($name, $file_hash, $link_hash)
                 echo t('EXPIRE') . ': ' . ($l['time'] == -1 ? '∞' : jirafeau_get_datetimefield($l['time'])) . '<br/>';
                 echo t('ONETIME') . ': ' . ($l['onetime'] == 'O' ? 'Yes' : 'No') . '<br/>';
                 echo t('UPLOAD_DATE') . ': ' . jirafeau_get_datetimefield($l['upload_date']) . '<br/>';
-                echo t('ORIGIN') . ': ' . $l['ip'] . '<br/>';
+                if (strlen($l['ip']) > 0) {
+                    echo t('ORIGIN') . ': ' . $l['ip'] . '<br/>';
+                }
                 echo '</td><td>';
                 echo '<form method="post">' .
                 '<input type = "hidden" name = "action" value = "download"/>' .

patrick-canterino.de