From 7d556b06151fc99ddab5b413d9f8908692ee5920 Mon Sep 17 00:00:00 2001 From: Jeff Date: Sun, 29 Jan 2017 14:52:34 -0500 Subject: [PATCH 1/2] more fixes --- contrib/lua/memeposting.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lua/memeposting.lua b/contrib/lua/memeposting.lua index b7f4cf0..0b90b19 100644 --- a/contrib/lua/memeposting.lua +++ b/contrib/lua/memeposting.lua @@ -31,7 +31,7 @@ function pre_text(str) str = str:gsub("%)", ")") str = str:gsub("%[", "[") str = str:gsub("\\", "\") - -- str = str:gsub("/", "/") + str = str:gsub("//", "//") str = str:gsub("%]", "]") str = str:gsub("==", "==") str = str:gsub("@", "@") From 9e47a4f2c88e049c4110ef0d73c24d69c8c5d5fa Mon Sep 17 00:00:00 2001 From: Jeff Date: Sun, 29 Jan 2017 16:15:01 -0500 Subject: [PATCH 2/2] disable post reply --- contrib/js/nntpchan/post-reply.js | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/js/nntpchan/post-reply.js b/contrib/js/nntpchan/post-reply.js index 48ee66c..b508be5 100644 --- a/contrib/js/nntpchan/post-reply.js +++ b/contrib/js/nntpchan/post-reply.js @@ -188,6 +188,7 @@ ReplyBox.prototype.hide = function() { } onready(function(){ + return; /* disabled */ var replyBox = new ReplyBox(); replyBox.hide(); document.reply = replyBox;