From 2e529ff470fb002159b3e86b36dd9358950ff0b2 Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Sun, 4 Jul 2010 19:47:36 +0000 Subject: [PATCH] Dirty hack to allow 'penartur' to reply in closed threads --- Common/dataobjects/Post.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/dataobjects/Post.cs b/Common/dataobjects/Post.cs index 0ce77ae..f830667 100644 --- a/Common/dataobjects/Post.cs +++ b/Common/dataobjects/Post.cs @@ -201,7 +201,7 @@ namespace FLocal.Common.dataobjects { } public Post Reply(User poster, string title, string body, PostLayer desiredLayer, DateTime date, int? forcedPostId) { - if(this.thread.isLocked) { + if(this.thread.isLocked && poster.name != "inga-lovinde") { throw new FLocalException("thread locked"); }