mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 09:02:41 +00:00
12 lines
212 B
PHP
12 lines
212 B
PHP
<?php
|
|
if (array_key_exists("t", $_GET)) {
|
|
return [
|
|
'code' => 304,
|
|
'lastMod' => (int) $_GET['t'],
|
|
];
|
|
} else {
|
|
return [
|
|
'code' => 304,
|
|
'cache' => false,
|
|
];
|
|
}
|