mirror of
https://github.com/php/web-php.git
synced 2026-04-25 07:58:04 +02:00
2735e5f03f
1/n - Update / and /include/ only.
6 lines
195 B
PHP
6 lines
195 B
PHP
<?php
|
|
// Simulate a /include shortcut call (which will lead to a manual page)
|
|
$_SERVER['REQUEST_URI'] = '/include';
|
|
include_once __DIR__ . '/prepend.inc';
|
|
include_once __DIR__ . '/../error.php';
|