blob: 035ba4d2314039f53e15ab22e57a1d52e951b739 [file] [log] [blame]
<?php
$request_origin_value = $_SERVER["HTTP_ORIGIN"];
if (!is_null($request_origin_value)) {
header("Access-Control-Allow-Origin: null");
echo "PASS";
}
?>