mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 03:48:18 -07:00
12 lines
248 B
PHP
12 lines
248 B
PHP
|
<?php
|
||
|
error_reporting(0);
|
||
|
if ( $_REQUEST['header'] ) {
|
||
|
if ( $_REQUEST['header'] == "ecma" ) {
|
||
|
header("Content-type: application/ecmascript");
|
||
|
} else {
|
||
|
header("Content-type: text/javascript");
|
||
|
}
|
||
|
}
|
||
|
?>
|
||
|
ok( true, "Script executed correctly." );
|