Introduced before callback (#384) (updated test data)
This commit is contained in:
parent
2bdd208e41
commit
47a6a32b27
1 changed files with 6 additions and 0 deletions
|
@ -18,5 +18,11 @@ if($name == 'foo') {
|
||||||
echo "pan";
|
echo "pan";
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
|
$request = apache_request_headers();
|
||||||
|
$request = $request['customHeader'];
|
||||||
|
if(strlen($request) > 0) {
|
||||||
|
echo $request;
|
||||||
|
die();
|
||||||
|
}
|
||||||
echo 'ERROR <script type="text/javascript">ok( true, "name.php executed" );</script>';
|
echo 'ERROR <script type="text/javascript">ok( true, "name.php executed" );</script>';
|
||||||
?>
|
?>
|
Loading…
Reference in a new issue