require (JIRAFEAU_ROOT.'lib/template/header.php');
echo '<div>' .
'<form action = "';
- echo $cfg['web_root'] . '/f.php';
+ echo JIRAFEAU_ABSPREFIX . 'f.php';
echo '" ' .
'method = "post" id = "submit_post">'; ?>
<input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
'<input type = "password" name = "key" />' .
'</td></tr>' .
'<tr><td>' .
- t('By using our services, you accept our'). ' <a href="' . $cfg['web_root'] . 'tos.php' . '">' . t('Terms of Service') . '</a>.' .
+ t('By using our services, you accept our'). ' <a href="' . JIRAFEAU_ABSPREFIX . 'tos.php' . '">' . t('Terms of Service') . '</a>.' .
'</td></tr>';
if ($link['onetime'] == 'O')
}
?><tr><td><input type="submit" id = "submit_download" value="<?php echo t('Download'); ?>"
- onclick="document.getElementById('submit_post').action='
-<?php
- echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&d=1';
+ onclick="document.getElementById('submit_post').action='<?php
+ echo JIRAFEAU_ABSPREFIX . 'f.php?h=' . $link_name . '&d=1';
if (!empty($crypt_key))
echo '&k=' . urlencode($crypt_key);
?>';
if ($cfg['preview'] && jirafeau_is_viewable($link['mime_type']))
{
?><input type="submit" id = "submit_preview" value="<?php echo t('Preview'); ?>"
- onclick="document.getElementById('submit_post').action='
- <?php
- echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&p=1';
+ onclick="document.getElementById('submit_post').action='<?php
+ echo JIRAFEAU_ABSPREFIX . 'f.php?h=' . $link_name . '&p=1';
if (!empty($crypt_key))
echo '&k=' . urlencode($crypt_key);
?>';
{
require (JIRAFEAU_ROOT.'lib/template/header.php');
echo '<div>' .
- '<form action = "';
- echo $cfg['web_root'] . '/f.php';
+ '<form action="';
+ echo JIRAFEAU_ABSPREFIX . 'f.php';
echo '" ' .
'method = "post" id = "submit_post">'; ?>
<input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
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('Terms of Service') . '</a>.' .
+ t('By using our services, you accept our'). ' <a href="' . JIRAFEAU_ABSPREFIX . 'tos.php' . '">' . t('Terms of Service') . '</a>.' .
'</td></tr>';
if ($link['onetime'] == 'O')
?>
<tr><td><input type="submit" id = "submit_download" value="<?php echo t('Download'); ?>"
- onclick="document.getElementById('submit_post').action='
-<?php
- echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&d=1';
+ onclick="document.getElementById('submit_post').action='<?php
+ echo JIRAFEAU_ABSPREFIX . 'f.php?h=' . $link_name . '&d=1';
if (!empty($crypt_key))
echo '&k=' . urlencode($crypt_key);
?>';
if ($cfg['preview'] && jirafeau_is_viewable($link['mime_type']))
{
?><input type="submit" id = "submit_preview" value="<?php echo t('Preview'); ?>"
- onclick="document.getElementById('submit_post').action='
-<?php
- echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&p=1';
+ onclick="document.getElementById('submit_post').action='<?php
+ echo JIRAFEAU_ABSPREFIX . 'f.php?h=' . $link_name . '&p=1';
if (!empty($crypt_key))
echo '&k=' . urlencode($crypt_key);
?>';
<?php
header('Content-Type: text/html; charset=utf-8');
header('x-ua-compatible: ie=edge');
-
-$protocol = (bool)is_ssl() ? 'https' : 'http';
-
-if ( !empty($cfg['web_root']) ) {
- $cfg['web_root'] = preg_replace('#https?://#', $protocol . '://', $cfg['web_root'], 1);
-}
-
-/* Avoids irritating errors with the installer (no conf file is present then). */
-if (!isset ($cfg['web_root']))
- $web_root = $protocol+'://' . $_SERVER['HTTP_HOST'] . '/';
-else
- $web_root = $cfg['web_root'];
-
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><?php echo (true === empty($cfg['title']))? t('Jirafeau, your web file repository') : $cfg['title']; ?></title>
- <link href="<?php echo $web_root . 'media/' . $cfg['style'] . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
+ <link href="<?php echo JIRAFEAU_ABSPREFIX . 'media/' . $cfg['style'] . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
</head>
<body>
-<script type="text/javascript" src="lib/functions.js.php"></script>
+<script type="text/javascript" src="<?php echo JIRAFEAU_ABSPREFIX . 'lib/functions.js.php'; ?>"></script>
<div id="content">
<h1>
- <a href="<?php echo $web_root; ?>">
+ <a href="<?php echo JIRAFEAU_ABSPREFIX; ?>">
<?php echo (true === empty($cfg['title']))? t('Jirafeau, your web file repository') : $cfg['title']; ?>
</a>
</h1>