diff options
Diffstat (limited to 'static/green.php')
-rwxr-xr-x | static/green.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/static/green.php b/static/green.php index 3e45fc6..65ded6f 100755 --- a/static/green.php +++ b/static/green.php @@ -1,16 +1,16 @@ <?php #==================================================================================================== -# Cache deaktivieren +# Disable cache #==================================================================================================== header('Cache-Control: no-cache, no-store, must-revalidate'); #==================================================================================================== -# Content-Type setzen +# Set Content-Type #==================================================================================================== header('Content-Type: text/css'); #==================================================================================================== -# Lange Ladezeit simulieren +# Simulate long loading time #==================================================================================================== usleep(intval(rand(60, 100).'0000')); ?> |