From 2b5c9fb20ffb0e3bfba1e460132d031f290b4d7d Mon Sep 17 00:00:00 2001 From: real_nowhereman Date: Sat, 21 Nov 2009 21:02:01 +0000 Subject: [PATCH] old 'not' reference prevented 'exclude' queries from working --- fp-includes/core/core.fpdb.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fp-includes/core/core.fpdb.class.php b/fp-includes/core/core.fpdb.class.php index 071f2cd..f4b8279 100644 --- a/fp-includes/core/core.fpdb.class.php +++ b/fp-includes/core/core.fpdb.class.php @@ -121,7 +121,7 @@ } if (isset($params['exclude'])) { - $this->not = intval($params['exclude']); + $this->exclude = intval($params['exclude']); } }