photofloat/web/staticrender.php

7 lines
213 B
PHP
Raw Normal View History

2011-05-09 07:32:30 -04:00
<?php
2011-05-13 05:08:11 -04:00
if ($_ENV["SCRIPT_URL"] == $_ENV["SCRIPT_NAME"])
die("Infinite loop.");
2011-05-09 07:32:30 -04:00
putenv('LANG=en_US.UTF-8');
passthru("utils/serverexecute ".escapeshellarg($_ENV["SCRIPT_URI"]."#!".$_GET["_escaped_fragment_"]));
?>