8 lines
144 B
PHP
8 lines
144 B
PHP
|
<?php
|
||
|
error_reporting(0);
|
||
|
if ( $_REQUEST['header'] ) {
|
||
|
header("Content-type: text/javascript");
|
||
|
}
|
||
|
?>
|
||
|
ok( true, "Script executed correctly." );
|