From 8f960088efef1b8a0a16c0544e1a35e7db609d2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C4=8Dius?= Date: Tue, 24 Apr 2007 16:04:04 +0000 Subject: [PATCH] Fixing a bug where not having akismet key would block forum posting svn path=/trunk/boinc/; revision=12462 --- html/inc/akismet.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/html/inc/akismet.inc b/html/inc/akismet.inc index 4901cdb200..f720fdcea2 100644 --- a/html/inc/akismet.inc +++ b/html/inc/akismet.inc @@ -3,9 +3,8 @@ function akismet_check($user, $post) { $config = get_config(); $master_url = parse_config($config, ""); - $key = parse_config(get_config(), ""); + $key = parse_config($config, ""); if ($key == null) { - exit(); return true; // unable to get key from config } $master_url = urlencode($master_url);