diff --git a/src/General/Settings.coffee b/src/General/Settings.coffee
index ccd23aeea..d6a76c91b 100755
--- a/src/General/Settings.coffee
+++ b/src/General/Settings.coffee
@@ -408,7 +408,7 @@ Settings =
time: ->
@nextElementSibling.textContent = Time.format @value, new Date()
backlink: ->
- @nextElementSibling.textContent = @value.replace /%id/, '123456789'
+ @nextElementSibling.textContent = @value.replace /%(?:id|%)/g, (x) -> {'%id': '123456789', '%%': '%'}[x]
fileInfo: ->
data =
isReply: true
diff --git a/src/General/html/Settings/Advanced.html b/src/General/html/Settings/Advanced.html
index 32dc380ef..a4f7171c0 100755
--- a/src/General/html/Settings/Advanced.html
+++ b/src/General/html/Settings/Advanced.html
@@ -47,6 +47,7 @@
Hour: %k, %H, %l, %I, %p, %P
Minute: %M
Second: %S
+ Literal %: %%