Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F823298
phpcompat.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Mar 9, 6:41 PM
Size
359 B
Mime Type
text/x-php
Expires
Tue, Mar 11, 6:41 PM (6 h, 32 m)
Engine
blob
Format
Raw Data
Handle
585649
Attached To
rINP In-Portal
phpcompat.php
View Options
<?php
if
(
!
isset
(
$_SERVER
)
)
{
$_SERVER
=
$HTTP_SERVER_VARS
;
}
if
(
!
isset
(
$_GET
)
)
{
$_GET
=
$HTTP_GET_VARS
;
}
if
(
!
isset
(
$_FILES
)
)
{
$_FILES
=
$HTTP_POST_FILES
;
}
if
(
!
defined
(
'DIRECTORY_SEPARATOR'
)
)
{
define
(
'DIRECTORY_SEPARATOR'
,
strtoupper
(
substr
(
PHP_OS
,
0
,
3
)
==
'WIN'
)
?
'
\\
'
:
'/'
)
;
}
Event Timeline
Log In to Comment