diff --git a/ChangeLog b/ChangeLog index fd2b7dbd6..ba8f76e7c 100755 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,8 @@ $Id$ $Source$ 2006-04-12 Sebastian Mendel + * changelog.php: + link users, files, bugs, rfes and patches * libraries/footer.inc.php: fixed bug #1454874 Javascript error in new (not framed) print window * css/phpmyadmin.css.php, scripts/setup.php, test/theme.php diff --git a/changelog.php b/changelog.php index 5033c4195..e55c02d93 100644 --- a/changelog.php +++ b/changelog.php @@ -1,8 +1,42 @@ '\\1 \\2', + + // mail adresse + '/([0-9]{4}-[0-9]{2}-[0-9]{2}) (.+) <(.*@.*)>/i' + => '\\1 \\2', + + // linking bugs + '/bug\s+#([0-9]*)/i' + => 'bug \\1', + + // linking pacthes + '/patch\s+#([0-9]*)/i' + => 'patch \\1', + + // linking RFE + '/rfe\s+#([0-9]*)/i' + => 'RFE \\1', + + // linking files + '/(\s+)([\\/a-z_0-9\.]+\.php)/i' + => '\\1\\2', +); + +header('Content-type: text/html; charset=utf-8'); +echo '
';
+echo preg_replace(array_keys($replaces), $replaces, $changelog);
+echo '
'; ?>