There is no reason to make bug uppercase.

This commit is contained in:
Michal Čihař
2006-05-14 16:52:46 +00:00
parent 22128e5f89
commit 233376d65f
2 changed files with 3 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ $Source$
2006-05-14 Michal Čihař <michal@cihar.com> 2006-05-14 Michal Čihař <michal@cihar.com>
* libraries/common.lib.php: Fix reading database list with MySQL wildcards * libraries/common.lib.php: Fix reading database list with MySQL wildcards
(bug #1487613). (bug #1487613).
* changelog.php: There is no reason to make bug uppercase.
2006-05-14 Marc Delisle <lem9@users.sourceforge.net> 2006-05-14 Marc Delisle <lem9@users.sourceforge.net>
* libraries/import.lib.php: bug #1482841, support USE statement in the import file * libraries/import.lib.php: bug #1482841, support USE statement in the import file

View File

@@ -42,11 +42,11 @@ $replaces = array(
// linking bugs // linking bugs
'/bug\s*#?([0-9]{6,})/i' '/bug\s*#?([0-9]{6,})/i'
=> '<a href="https://sourceforge.net/tracker/index.php?func=detail&amp;aid=\\1&amp;group_id=23067&amp;atid=377408">BUG #\\1</a>', => '<a href="https://sourceforge.net/tracker/index.php?func=detail&amp;aid=\\1&amp;group_id=23067&amp;atid=377408">bug #\\1</a>',
// all other 6+ digit numbers are treated as bugs // all other 6+ digit numbers are treated as bugs
'/(?<!BUG|RFE|patch) #?([0-9]{6,})/i' '/(?<!BUG|RFE|patch) #?([0-9]{6,})/i'
=> ' <a href="https://sourceforge.net/tracker/index.php?func=detail&amp;aid=\\1&amp;group_id=23067&amp;atid=377408">BUG #\\1</a>', => ' <a href="https://sourceforge.net/tracker/index.php?func=detail&amp;aid=\\1&amp;group_id=23067&amp;atid=377408">bug #\\1</a>',
// CVE/CAN entries // CVE/CAN entries
'/((CAN|CVE)-[0-9]+-[0-9]+)/' '/((CAN|CVE)-[0-9]+-[0-9]+)/'