mirror of
https://github.com/discourse/discourse.git
synced 2026-08-10 04:58:31 -05:00
FIX: converts “ and ” to " in local dates (#10987)
This commit is contained in:
+1
-1
@@ -13,7 +13,7 @@ function addLocalDate(buffer, matches, state) {
|
||||
countdown: null,
|
||||
};
|
||||
|
||||
const matchString = matches[1].replace(/„|“|«|»/g, '"');
|
||||
const matchString = matches[1].replace(/„|“|«|»|“|”/g, '"');
|
||||
|
||||
let parsed = parseBBCodeTag(
|
||||
"[date date" + matchString + "]",
|
||||
|
||||
Reference in New Issue
Block a user