mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-23 05:05:53 +12:00
add hirunner
This commit is contained in:
parent
e553254bd5
commit
398388f5a4
9 changed files with 0 additions and 0 deletions
18
WebInterface/game-site/horseisle.swf/index.php
Normal file
18
WebInterface/game-site/horseisle.swf/index.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
# Decide which version to use
|
||||
if($_SERVER['HTTP_USER_AGENT'] == "Shockwave Flash") # Projector
|
||||
{
|
||||
$file = file_get_contents("horseisle_projector.swf");
|
||||
header("Content-Type: application/x-shockwave-flash");
|
||||
header("Content-Length: ".sizeof($file));
|
||||
echo($file);
|
||||
}
|
||||
else
|
||||
{
|
||||
$file = file_get_contents("horseisle_patched.swf");
|
||||
header("Content-Type: application/x-shockwave-flash");
|
||||
header("Content-Length: ".sizeof($file));
|
||||
echo($file);
|
||||
}
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue