summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--lib/VNDBUtil.pm4
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d4cdf754..33156b82 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@
- Multi::Feed: Show full summary and refresh more often
- Switched back to Algorithm::Diff::XS
- Added secondary ordering on title on releases listing on VN page
+ - Bugfix: Properly make i+ IDs linkable in bb2html()
2.20 - 2011-05-01
- Added support for sponsored links on VN pages
diff --git a/lib/VNDBUtil.pm b/lib/VNDBUtil.pm
index 76290013..7aa75bae 100644
--- a/lib/VNDBUtil.pm
+++ b/lib/VNDBUtil.pm
@@ -54,8 +54,8 @@ sub bb2html {
};
while($raw =~ m{(
- ([tdvpric][1-9][0-9]*\.[1-9][0-9]*) | # 2. exid
- ([tdvprugc][1-9][0-9]*) | # 3. id
+ ([tdvprc][1-9][0-9]*\.[1-9][0-9]*) | # 2. exid
+ ([tdvprcugi][1-9][0-9]*) | # 3. id
(\[[^\s\]]+\]) | # 4. tag
((?:https?|ftp)://[^><"\n\s\]\[]+[\d\w=/-]) # 5. url
)}xg) {