mirror of
https://github.com/php/web-bugs.git
synced 2026-03-24 07:42:08 +01:00
10 lines
265 B
PHP
10 lines
265 B
PHP
<?php
|
|
$p = clean($package_name);
|
|
$b = clean($bug_id);
|
|
response_header('Patch Added :: ' . $p . ' :: Bug #' . $b);
|
|
?>
|
|
<h1>Patch Added to Bug #<?php echo $b; ?>, Package <?php echo $p; ?></h1>
|
|
<?php
|
|
include "{$ROOT_DIR}/templates/listpatches.php";
|
|
response_footer();
|