diff options
author | Thomas Lange <code@nerdmind.de> | 2015-12-26 16:37:25 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2015-12-26 16:37:25 +0100 |
commit | 6658708bdd775a6ab1352e0c36b4c7deafc52e84 (patch) | |
tree | e95ef6b6fb67e0d1ca42221e94631fa6123b6f22 /static/red.php | |
parent | 903100ecb99ab926d4ac3be4eba11ea1c9800e12 (diff) | |
download | bigpipe-6658708bdd775a6ab1352e0c36b4c7deafc52e84.tar.gz bigpipe-6658708bdd775a6ab1352e0c36b4c7deafc52e84.tar.xz bigpipe-6658708bdd775a6ab1352e0c36b4c7deafc52e84.zip |
Multiple updates; new feature PhaseDoneJS
Diffstat (limited to 'static/red.php')
-rwxr-xr-x | static/red.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/static/red.php b/static/red.php index 9ad993e..e6936e8 100755 --- a/static/red.php +++ b/static/red.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')); ?> |