Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?php | |
| 2 // Set max-age to non-zero value so the next update will be served from cache. | |
| 3 header('Cache-Control: max-age=3600'); | |
| 4 header('Content-Type:application/javascript'); | |
| 5 // Return a different script for each access. | |
| 6 echo '// ' . microtime(); | |
| 7 ?> | |
| OLD | NEW |