|
|
@ -69,50 +69,6 @@ function send_future_expire_header($offset=2600000)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Check request for If-Modified-Since and send an according response.
|
|
|
|
|
|
|
|
* This will terminate the current script if headers match the given values
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param int Modified date as unix timestamp
|
|
|
|
|
|
|
|
* @param string Etag value for caching
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
function send_modified_header($mdate, $etag=null, $skip_check=false)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (headers_sent())
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$iscached = false;
|
|
|
|
|
|
|
|
$etag = $etag ? "\"$etag\"" : null;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!$skip_check)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if ($_SERVER['HTTP_IF_MODIFIED_SINCE'] && strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) >= $mdate)
|
|
|
|
|
|
|
|
$iscached = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($etag)
|
|
|
|
|
|
|
|
$iscached = ($_SERVER['HTTP_IF_NONE_MATCH'] == $etag);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($iscached)
|
|
|
|
|
|
|
|
header("HTTP/1.x 304 Not Modified");
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
header("Last-Modified: ".gmdate("D, d M Y H:i:s", $mdate)." GMT");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
header("Cache-Control: private, must-revalidate, max-age=0");
|
|
|
|
|
|
|
|
header("Expires: ");
|
|
|
|
|
|
|
|
header("Pragma: ");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($etag)
|
|
|
|
|
|
|
|
header("Etag: $etag");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($iscached)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ob_end_clean();
|
|
|
|
|
|
|
|
exit;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Similar function as in_array() but case-insensitive
|
|
|
|
* Similar function as in_array() but case-insensitive
|
|
|
|
*
|
|
|
|
*
|
|
|
@ -325,7 +281,7 @@ function rc_request_header($name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $hdrs[$key];
|
|
|
|
return $hdrs[$key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -374,7 +330,7 @@ function clear_directory($dir_path)
|
|
|
|
* @return int Unix timestamp
|
|
|
|
* @return int Unix timestamp
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
function get_offset_time($offset_str, $factor=1)
|
|
|
|
function get_offset_time($offset_str, $factor=1)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (preg_match('/^([0-9]+)\s*([smhdw])/i', $offset_str, $regs))
|
|
|
|
if (preg_match('/^([0-9]+)\s*([smhdw])/i', $offset_str, $regs))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
$amount = (int)$regs[1];
|
|
|
|
$amount = (int)$regs[1];
|
|
|
@ -433,6 +389,7 @@ function abbreviate_string($str, $maxlength, $place_holder='...', $ending=false)
|
|
|
|
return $str;
|
|
|
|
return $str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* A method to guess the mime_type of an attachment.
|
|
|
|
* A method to guess the mime_type of an attachment.
|
|
|
|
*
|
|
|
|
*
|
|
|
|