From 65ef1d0210ec1dee1564e3275a102098d64212e9 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Mon, 25 Mar 2013 03:55:27 +0100 Subject: [PATCH] Don't open replies from the index in a new tab if the conf `Open Post in New Tab` is disabled. #968 --- src/qr.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qr.coffee b/src/qr.coffee index ea724eec8..9f30c5865 100644 --- a/src/qr.coffee +++ b/src/qr.coffee @@ -985,7 +985,7 @@ QR = if threadID is postID # new thread URL = "/#{g.BOARD}/res/#{threadID}" - else if g.VIEW is 'index' and !QR.cooldown.auto # posting from the index + else if g.VIEW is 'index' and !QR.cooldown.auto and Conf['Open Post in New Tab'] # replying from the index URL = "/#{g.BOARD}/res/#{threadID}#p#{postID}" if URL if Conf['Open Post in New Tab']