diff --git a/src/General/Build/PostInfo.html b/src/General/Build/PostInfo.html
index 9133a5e43..5130fff4e 100644
--- a/src/General/Build/PostInfo.html
+++ b/src/General/Build/PostInfo.html
@@ -5,6 +5,7 @@
?{email}{}
${name}
?{tripcode}{ ${tripcode}}
+ ?{o.xa19s}{${o.xa19s}}
?{pass}{ }
?{capcode}{ ## ${capcode}}
?{email}{}
@@ -18,6 +19,7 @@
No.
${ID}
+ ?{o.isReply}{Like!?{o.xa19l}{ ×${o.xa19l}}}
?{o.isSticky}{
}
?{o.isClosed && !o.isArchived}{
}
?{o.isArchived}{
}
diff --git a/src/Posting/QR.coffee b/src/Posting/QR.coffee
index 4412dd876..0f0e185cb 100644
--- a/src/Posting/QR.coffee
+++ b/src/Posting/QR.coffee
@@ -846,7 +846,12 @@ QR =
QR.cleanNotifications()
if Conf['Posting Success Notifications']
- QR.notifications.push new Notice 'success', h1.textContent, 5
+ {textContent} = h1
+ timeout = 5
+ if (xa19 = resDoc.firstChild.textContent.match(/xa19:(.*):xa19/))
+ textContent += " (score/perks: #{xa19[1]})"
+ timeout = 20
+ QR.notifications.push new Notice 'success', textContent, timeout
QR.cooldown.add threadID, postID