mirror of
https://github.com/getgrav/grav.git
synced 2026-05-06 16:36:37 +02:00
Merge branch 'develop' of https://github.com/getgrav/grav into develop
This commit is contained in:
@@ -29,7 +29,9 @@ class User extends Data
|
||||
*/
|
||||
public static function load($username)
|
||||
{
|
||||
$locator = Grav::instance()['locator'];
|
||||
$grav = Grav::instance();
|
||||
$locator = $grav['locator'];
|
||||
$config = $grav['config'];
|
||||
|
||||
// force lowercase of username
|
||||
$username = strtolower($username);
|
||||
@@ -48,6 +50,9 @@ class User extends Data
|
||||
$user = new User($content, $blueprint);
|
||||
$user->file($file);
|
||||
|
||||
// add user to config
|
||||
$config->set("user", $user);
|
||||
|
||||
return $user;
|
||||
}
|
||||
|
||||
|
||||
@@ -270,6 +270,25 @@ abstract class Utils
|
||||
} else {
|
||||
$new_length = $size;
|
||||
header("Content-Length: " . $size);
|
||||
|
||||
if (Grav::instance()['config']->get('system.cache.enabled')) {
|
||||
$expires = Grav::instance()['config']->get('system.pages.expires');
|
||||
if ($expires > 0) {
|
||||
$expires_date = gmdate('D, d M Y H:i:s T', time() + $expires);
|
||||
header('Cache-Control: max-age=' . $expires);
|
||||
header('Expires: ' . $expires_date);
|
||||
header('Pragma: cache');
|
||||
}
|
||||
header('Last-Modified: ' . gmdate("D, d M Y H:i:s T", filemtime($file)));
|
||||
|
||||
// Return 304 Not Modified if the file is already cached in the browser
|
||||
if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) &&
|
||||
strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) >= filemtime($file))
|
||||
{
|
||||
header('HTTP/1.1 304 Not Modified');
|
||||
exit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* output the file itself */
|
||||
|
||||
Reference in New Issue
Block a user