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