X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/blobdiff_plain/02ffb9fe02fbdb2abfa3c449ca60e37e76126f14..9d9faa60955615f8bd9cf3cf9fc04dfb69c6a4db:/f.php?ds=inline diff --git a/f.php b/f.php index 75d77d7..67590eb 100644 --- a/f.php +++ b/f.php @@ -19,10 +19,9 @@ */ define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/'); -require (JIRAFEAU_ROOT . 'lib/lang.php'); -require (JIRAFEAU_ROOT . 'lib/config.original.php'); require (JIRAFEAU_ROOT . 'lib/settings.php'); require (JIRAFEAU_ROOT . 'lib/functions.php'); +require (JIRAFEAU_ROOT . 'lib/lang.php'); if (!isset ($_GET['h']) || empty ($_GET['h'])) { @@ -49,6 +48,13 @@ if (!preg_match ('/[0-9a-zA-Z_-]+$/', $link_name)) $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 '

' . t('Sorry, the requested file is not found') . @@ -134,7 +140,7 @@ if (!empty ($link['key'])) '' . '' . '' . - t('By using our services, you accept our'). ' ' . t('Term Of Service') . '' . + t('By using our services, you accept our'). ' ' . t('Terms of Service') . '.' . ''; if ($link['onetime'] == 'O') @@ -173,6 +179,7 @@ if (!empty ($link['key'])) $password_challenged = true; else { + sleep (2); require (JIRAFEAU_ROOT.'lib/template/header.php'); echo '

' . t('Access denied') . '

'; @@ -193,10 +200,10 @@ if (!$password_challenged && !$do_download && !$do_preview) ' . htmlspecialchars($link['file_name']) . '' . '' . ''; if ($link['onetime'] == 'O')
' . - t('You are about to download') . ' "' . htmlspecialchars($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']) . ').' . '
' . - t('By using our services, you accept our'). ' ' . t('Term Of Service') . '' . + t('By using our services, you accept our'). ' ' . t('Terms of Service') . '.' . '