mirror of
https://git.code.sf.net/p/quake/website
synced 2024-12-02 17:12:20 +00:00
9 lines
331 B
PHP
9 lines
331 B
PHP
<? // Project logo background rotation
|
|
define ('siteHome', '/home/project-web/quake/htdocs');
|
|
require siteHome . "/parts/library.inc"; // Load function library
|
|
|
|
srand ((double) microtime () * 1000000);
|
|
|
|
header("HTTP/1.1 307 Temporary Redirect");
|
|
header("Location: /img/background-logos/$theme-logo" . rand(1, 3) . '.png');
|
|
?>
|