diff options
author | Kevin Chabowski <kevin@kch42.de> | 2012-03-03 14:21:03 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2012-03-03 14:21:03 +0100 |
commit | a8aafff07b471e674b8085bafb10b6f41b98316c (patch) | |
tree | 3ae54c1f327e7bbc5b80d6669cde12f330c146df /ratatoeskr/backend.php | |
parent | acf697cd1bbc2749460332bd45ab098a4e367382 (diff) | |
download | ratatoeskr-cms-a8aafff07b471e674b8085bafb10b6f41b98316c.tar.gz ratatoeskr-cms-a8aafff07b471e674b8085bafb10b6f41b98316c.tar.bz2 ratatoeskr-cms-a8aafff07b471e674b8085bafb10b6f41b98316c.zip |
Allow comment setting was not saved correctly. Fixed.
Also fixed the Heading of CONTRIBUTORS. Copy&Paste is not always a
good idea...
Beta 4
Diffstat (limited to 'ratatoeskr/backend.php')
-rw-r--r-- | ratatoeskr/backend.php | 3 |
1 files changed, 2 insertions, 1 deletions
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)) |