diff --git a/ChangeLog b/ChangeLog index 6b83d6991..67ebc55fe 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,5 @@ ---------------------- -phpMyAdmin - Changelog +phpMyAdmin - ChangeLog ---------------------- $Id$ @@ -9,6 +9,7 @@ $Source$ * libraries/common.lib.php: Make cookie login form work with token protection. * libraries/auth/cookie.auth.lib.php: Do not include empty values. + * changelog.php: Generate proper XHTML. 2006-04-25 Sebastian Mendel * db_details_qbe.php, db_printview.php, libraries/display_tbl.lib.php, diff --git a/changelog.php b/changelog.php index 2f2ce5779..0912c2abe 100644 --- a/changelog.php +++ b/changelog.php @@ -23,11 +23,11 @@ $replaces = array( // linking patches '/patch\s*#?([0-9]{6,})/i' - => 'patch #\\1', + => 'patch #\\1', // linking RFE '/(?:rfe|feature)\s*#?([0-9]{6,})/i' - => 'RFE #\\1', + => 'RFE #\\1', // linking files '/(\s+)([\\/a-z_0-9\.]+\.(?:php3?|html|pl|js|sh))/i' @@ -39,11 +39,11 @@ $replaces = array( // linking bugs '/bug\s*#?([0-9]{6,})/i' - => 'BUG #\\1', + => 'BUG #\\1', // all other 6+ digit numbers are treated as bugs '/(? ' BUG #\\1', + => ' BUG #\\1', // CVE/CAN entries '/((CAN|CVE)-[0-9]+-[0-9]+)/' @@ -62,7 +62,23 @@ $replaces = array( ); header('Content-type: text/html; charset=utf-8'); +echo ''; +?> + + + + + +phpMyAdmin - ChangeLog + + + +

phpMyAdmin - ChangeLog

+'; echo preg_replace(array_keys($replaces), $replaces, $changelog); echo ''; ?> + +