X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/6dc6c81936d5b4e76af3cbdb1d33305347e52177..4b1444392bd5b597869029fc412618bc21268b6c:/file.php?ds=sidebyside diff --git a/file.php b/file.php index 8e4451a..d01bee6 100644 --- a/file.php +++ b/file.php @@ -35,7 +35,7 @@ if (isset ($_GET['h']) && !empty ($_GET['h'])) if (!preg_match ('/[0-9a-f]{32}$/', $link_name)) { require (JIRAFEAU_ROOT.'lib/template/header.php'); - echo '

' . _('Sorry, the requested file is not found') . '

'; + echo '

' . t('Sorry, the requested file is not found') . '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; } @@ -44,17 +44,17 @@ if (isset ($_GET['h']) && !empty ($_GET['h'])) if (count ($link) == 0) { require (JIRAFEAU_ROOT.'lib/template/header.php'); - echo '

' . _('Sorry, the requested file is not found') . + echo '

' . t('Sorry, the requested file is not found') . '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; } - - if (!file_exists (VAR_FILES . $link['md5'])) + $p = s2p ($link['md5']); + if (!file_exists (VAR_FILES . $p . $link['md5'])) { - jirafeau_delete ($link_name); + jirafeau_delete_link ($link_name); require (JIRAFEAU_ROOT.'lib/template/header.php'); - echo '

'._('File not available.'). + echo '

'.t('File not available.'). '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; @@ -62,23 +62,23 @@ if (isset ($_GET['h']) && !empty ($_GET['h'])) if (!empty ($delete_code) && $delete_code == $link['link_code']) { - jirafeau_delete ($link_name); + jirafeau_delete_link ($link_name); require (JIRAFEAU_ROOT.'lib/template/header.php'); - echo '

'._('File has been deleted.'). + echo '

'.t('File has been deleted.'). '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; } - if ($link['time'] != JIRAFEAU_INFINITY && time ()> $link['time']) + if ($link['time'] != JIRAFEAU_INFINITY && time () > $link['time']) { - jirafeau_delete ($link_name); + jirafeau_delete_link ($link_name); require (JIRAFEAU_ROOT.'lib/template/header.php'); echo '

'. - _('The time limit of this file has expired.') . ' ' . - _('File has been deleted.') . + t('The time limit of this file has expired.') . ' ' . + t('File has been deleted.') . '

'; - require (JIRAFEAU_ROOT.'lib/template/footer.php'); + require (JIRAFEAU_ROOT . 'lib/template/footer.php'); exit; } @@ -92,13 +92,13 @@ if (isset ($_GET['h']) && !empty ($_GET['h'])) "" method = "post">
- -
" + "" />

' . _('Access denied') . + echo '

' . t('Access denied') . '

'; require (JIRAFEAU_ROOT.'lib/template/footer.php'); exit; @@ -125,10 +124,10 @@ if (isset ($_GET['h']) && !empty ($_GET['h'])) header ('Content-Disposition: attachment; filename="' . $link['file_name'] . '"'); } - readfile (VAR_FILES . $link['md5']); + readfile (VAR_FILES . $p . $link['md5']); if ($link['onetime'] == 'O') - jirafeau_delete ($link_name); + jirafeau_delete_link ($link_name); exit; } else