1
0
mirror of https://github.com/php/web-php.git synced 2026-03-24 07:12:16 +01:00
Files
archived-web-php/credits.php
Gabor Hojtsy 97764145fd Fix for a PHP bug here... Now sites with an actual PHP set up will
have an XHTML 1.0 strict compatible credits page
2003-08-07 15:07:18 +00:00

32 lines
689 B
PHP

<?php
// $Id$
$_SERVER['BASE_PAGE'] = 'credits.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
// Put credits information to $credits
ob_start();
phpcredits();
$credits = ob_get_contents();
ob_end_clean();
// Strip all but the body and drop styles
preg_match('!<body.*?>(.*)</body>!ims', $credits, $m);
$credits = preg_replace('!<style.*?>.*</style>!ims', '', $m[1]);
// Fix for PHP bug #24839,
// which affects the page layout
$credits = str_replace(
array("</center>", "& "),
array("</div>", "&amp; "),
$credits
);
// If there is something left, print it out
if ($credits) {
site_header("Credits");
echo $credits;
site_footer();
}
?>