diff --git a/CHANGELOG.md b/CHANGELOG.md index bbab98a82..cf852f8e7 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,12 @@ Based on v1.8.8.6. - Fix some archive features not being possible to disable; unchecking `404 Redirect`, `Archive Link`, and `Resurrect Quotes` is now sufficient to turn all archive features off. - Allow `disabled` as an archive choice for every board. +### v1.8.8.7 +*2014-08-10* + +**ccd0** +- Fix oversight in escaping stuff when building HTML (believed harmless but better to be safe). + ### v1.8.8.6 *2014-08-07* diff --git a/src/General/Build.coffee b/src/General/Build.coffee index e2b69bb2d..be314f118 100755 --- a/src/General/Build.coffee +++ b/src/General/Build.coffee @@ -147,7 +147,7 @@ Build = postLink = Build.postURL boardID, threadID, postID quoteLink = if Build.sameThread boardID, threadID - "javascript:quote('#{postID}');" + "javascript:quote('#{+postID}');" else "/#{boardID}/thread/#{threadID}\#q#{postID}"