mirror of
https://github.com/php/web-php.git
synced 2026-03-24 15:22:19 +01:00
7 lines
204 B
PHP
7 lines
204 B
PHP
<?php
|
|
// Simulate a /include shortcut call
|
|
$_SERVER['REQUEST_URI'] = '/include';
|
|
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
|
|
include_once $_SERVER['DOCUMENT_ROOT'] . '/error.php';
|
|
?>
|