From a8aafff07b471e674b8085bafb10b6f41b98316c Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Sat, 3 Mar 2012 14:21:03 +0100 Subject: Allow comment setting was not saved correctly. Fixed. Also fixed the Heading of CONTRIBUTORS. Copy&Paste is not always a good idea... Beta 4 --- ratatoeskr/backend.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ratatoeskr/backend.php') diff --git a/ratatoeskr/backend.php b/ratatoeskr/backend.php index 6cf00cb..19d3891 100644 --- a/ratatoeskr/backend.php +++ b/ratatoeskr/backend.php @@ -216,7 +216,7 @@ $backend_subactions = url_action_subactions(array( } else $inputs["date"] = time(); - $inputs["allow_comments"] = !(empty($_POST["allow_comments"]) or $_POST["allow_comments"] != "yes"); + $inputs["allow_comments"] = !(empty($_POST["allow_comments"]) or ($_POST["allow_comments"] != "yes")); try { @@ -245,6 +245,7 @@ $backend_subactions = url_action_subactions(array( $article->excerpt[$editlang] = new Translation($inputs["excerpt"], $inputs["excerpt_txtproc"]); $article->set_tags(maketags($inputs["tags"], $editlang)); $article->set_section($inputs["article_section"]); + $article->allow_comments = $inputs["allow_comments"]; } if(empty($article)) -- cgit v1.2.3-54-g00ecf