git.p6c8.net
/
jirafeau.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge remote-tracking branch 'origin/master'
[jirafeau.git]
/
f.php
diff --git
a/f.php
b/f.php
index 99a67df9dd1fcd968d7830952e352d965a5b6b05..02186024fa0873a1554ef98458ba1dfe2b7329c4 100644
(file)
--- a/
f.php
+++ b/
f.php
@@
-49,6
+49,13
@@
if (!preg_match ('/[0-9a-zA-Z_-]+$/', $link_name))
$link = jirafeau_get_link ($link_name);
if (count ($link) == 0)
$link = jirafeau_get_link ($link_name);
if (count ($link) == 0)
+{
+ /* Try alias. */
+ $alias = jirafeau_get_alias (md5 ($link_name));
+ if (count ($alias) > 0)
+ $link = jirafeau_get_link ($alias["destination"]);
+}
+if (count ($link) == 0)
{
require (JIRAFEAU_ROOT.'lib/template/header.php');
echo '<div class="error"><p>' . t('Sorry, the requested file is not found') .
{
require (JIRAFEAU_ROOT.'lib/template/header.php');
echo '<div class="error"><p>' . t('Sorry, the requested file is not found') .
@@
-173,6
+180,7
@@
if (!empty ($link['key']))
$password_challenged = true;
else
{
$password_challenged = true;
else
{
+ sleep (2);
require (JIRAFEAU_ROOT.'lib/template/header.php');
echo '<div class="error"><p>' . t('Access denied') .
'</p></div>';
require (JIRAFEAU_ROOT.'lib/template/header.php');
echo '<div class="error"><p>' . t('Access denied') .
'</p></div>';
@@
-191,9
+199,9
@@
if (!$password_challenged && !$do_download && !$do_preview)
echo '" ' .
'method = "post" id = "submit_post">'; ?>
<input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
echo '" ' .
'method = "post" id = "submit_post">'; ?>
<input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
- echo '<fieldset><legend>' .
$link['file_name']
. '</legend><table>' .
+ echo '<fieldset><legend>' .
htmlspecialchars($link['file_name'])
. '</legend><table>' .
'<tr><td>' .
'<tr><td>' .
- t('You are about to download') . ' "' .
$link['file_name']
. '" (' . jirafeau_human_size($link['file_size']) . ')' .
+ t('You are about to download') . ' "' .
htmlspecialchars($link['file_name'])
. '" (' . jirafeau_human_size($link['file_size']) . ')' .
'</td></tr>' .
'<tr><td>' .
t('By using our services, you accept our'). ' <a href="' . $cfg['web_root'] . '/tos.php' . '">' . t('Term Of Service') . '</a>' .
'</td></tr>' .
'<tr><td>' .
t('By using our services, you accept our'). ' <a href="' . $cfg['web_root'] . '/tos.php' . '">' . t('Term Of Service') . '</a>' .
patrick-canterino.de